2021-02-21 22:27:19 +07:00
|
|
|
// errorcheck -d=panic
|
2012-01-20 13:34:38 -05:00
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2012-01-20 13:34:38 -05:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
// Issue 2623
|
2021-02-21 22:27:19 +07:00
|
|
|
var m = map[string]int{
|
|
|
|
"abc": 1,
|
2021-03-17 22:13:16 -07:00
|
|
|
1: 2, // ERROR "cannot use 1.*as type string in map key|incompatible type|cannot convert|cannot use"
|
2012-01-20 13:34:38 -05:00
|
|
|
}
|