/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue17752.go
20 строк
377 B
Matthew Dempsky
cmd/compile: prevent Noalg from breaking user types
04 ноя 2016, 03:11
04 ноя 2016, 03:11
3797446
Код
Авторство
О чём код?
// run // Copyright 2016 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 func f(m map[string]int) int { return m["a"] } func g(m map[[8]string]int) int { return m[[8]string{"a", "a", "a", "a", "a", "a", "a", "a"}] } func main() { m := map[[8]string]int{} g(m) }