/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue43701.go
18 строк
290 B
Matthew Dempsky
[dev.regabi] cmd/compile: don't promote Byval CaptureVars if Addrtaken
15 янв 2021, 19:13
15 янв 2021, 19:13
ab523fc
Код
Авторство
О чём код?
// compile // Copyright 2021 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 p func f() { var st struct { s string i int16 } _ = func() { var m map[int16]int m[st.i] = 0 } }