/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue7742.go
18 строк
362 B
Jan Ziak
cmd/gc: fix typo in ordermapassign
11 апр 2014, 17:28
11 апр 2014, 17:28
f973d94
Код
Авторство
О чём код?
// compile // Copyright 2014 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. // Issue 7742: cannot use &autotmp_0001 (type *map[string]string) as type *string in function argument package main var ( m map[string]string v string ) func main() { m[v], _ = v, v }