mirror of
https://github.com/golang/go
synced 2024-11-11 22:50:22 -07:00
d7ad3c4e86
bug205.go:14:12: error: index must be integer bug205.go:15:12: error: index must be integer bug205.go:16:12: error: incompatible type for map index R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=35957 CL=35960
19 lines
376 B
Go
19 lines
376 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
var t []int
|
|
var s string;
|
|
var m map[string]int;
|
|
|
|
func main() {
|
|
println(t["hi"]); // ERROR "integer"
|
|
println(s["hi"]); // ERROR "integer"
|
|
println(m[0]); // ERROR "map index"
|
|
}
|
|
|