/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue19084.go
17 строк
330 B
Cherry Zhang
cmd/compile: undo special handling of zero-valued STRUCTLIT
14 фев 2017, 21:57
14 фев 2017, 21:57
7820079
Код
Авторство
О чём код?
// compile // Copyright 2017 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 19084: SSA doesn't handle CONVNOP STRUCTLIT package p type T struct { a, b, c, d, e, f, g, h int // big, not SSA-able } func f() { _ = T(T{}) }