1// errorcheck
2
3// Copyright 2015 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// issue 13365: confusing error message (array vs slice)
8
9package main
10
11var t struct{}
12
13func main() {
14	_ = []int{-1: 0}    // ERROR "index must be non\-negative integer constant|index expression is negative|must not be negative"
15	_ = [10]int{-1: 0}  // ERROR "index must be non\-negative integer constant|index expression is negative|must not be negative"
16	_ = [...]int{-1: 0} // ERROR "index must be non\-negative integer constant|index expression is negative|must not be negative"
17
18	_ = []int{100: 0}
19	_ = [10]int{100: 0} // ERROR "index 100 out of bounds|out of range"
20	_ = [...]int{100: 0}
21
22	_ = []int{t}    // ERROR "cannot use .* as (type )?int( in slice literal)?|incompatible type"
23	_ = [10]int{t}  // ERROR "cannot use .* as (type )?int( in array literal)?|incompatible type"
24	_ = [...]int{t} // ERROR "cannot use .* as (type )?int( in array literal)?|incompatible type"
25}
26