2021-02-21 08:27:19 -07:00
|
|
|
// errorcheck -d=panic
|
2012-01-20 11:34:38 -07:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2011 The Go Authors. All rights reserved.
|
2012-01-20 11:34:38 -07: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 08:27:19 -07:00
|
|
|
var m = map[string]int{
|
|
|
|
"abc": 1,
|
2021-03-17 23:13:16 -06:00
|
|
|
1: 2, // ERROR "cannot use 1.*as type string in map key|incompatible type|cannot convert|cannot use"
|
2012-01-20 11:34:38 -07:00
|
|
|
}
|