/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue19671.go
16 строк
331 B
Josh Bleecher Snyder
cmd/compile: only SSA [0]T when T is SSA-able
24 мар 2017, 19:53
24 мар 2017, 19:53
7202341
Код
Авторство
О чём код?
// 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. // Used to crash when compiling assignments involving [0]T, // where T is not SSA-able. package a func f() { var i int arr := [0][2]int{} arr[i][0] = 0 }