/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue19696.go
20 строк
361 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 p type s struct { a, b, c, d, e int } func f() { var i int arr := [0]s{} arr[i].a++ }