/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/bug397.go
13 строк
355 B
Robert Griesemer
cmd/compile/internal/types2: refactor untyped conversions
23 мар 2021, 08:11
23 мар 2021, 08:11
8f19394
Код
Авторство
О чём код?
// errorcheck -d=panic // Copyright 2011 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 // Issue 2623 var m = map[string]int{ "abc": 1, 1: 2, // ERROR "cannot use 1.*as type string in map key|incompatible type|cannot convert|cannot use" }