/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue66096.go
17 строк
352 B
Cuong Manh Le
cmd/compile: fix copying SSA-able variables optimization
08 мар 2024, 05:00
08 мар 2024, 05:00
5a329c3
Код
Авторство
О чём код?
// compile // Copyright 2024 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 type Message struct { Header map[string][]string } func f() { m := Message{Header: map[string][]string{}} m.Header[""] = append([]string(m.Header[""]), "") _ = m }