/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue18089.go
19 строк
269 B
Emmanuel Odeke
cmd/compile: add test for blank field in composite literal
29 апр 2017, 23:32
29 апр 2017, 23:32
320aabb
Код
Авторство
О чём код?
// 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. package foo type T struct { x int _ int } func main() { _ = T{0, 0} x := T{1, 1} _ = x }