/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue8761.go
26 строк
521 B
Matthew Dempsky
[dev.typeparams] test: rename blank functions
29 июл 2021, 00:41
29 июл 2021, 00:41
adedf54
Код
Авторство
О чём код?
// compile // Copyright 2014 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 8761 // used to confuse code generator into using temporary before initialization. // caused 'variable live at entry' error in liveness analysis. package p func f1() { type C chan int _ = [1][]C{[]C{make(chan int)}} } func f2() { type C interface{} _ = [1][]C{[]C{recover()}} } func f3() { type C *int _ = [1][]C{[]C{new(int)}} }