/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue20333.go
15 строк
341 B
Josh Bleecher Snyder
cmd/compile: avoid checkwidth of [...] arrays
11 май 2017, 21:18
11 май 2017, 21:18
dccc653
Код
Авторство
О чём код?
// 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 20333: early checkwidth of [...] arrays led to compilation errors. package main import "fmt" func main() { fmt.Println(&[...]string{"abc", "def", "ghi"}) }