/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue29218.go
24 строки
308 B
Josh Bleecher Snyder
cmd/compile: process blocks containing only dead values in fuseIf
28 май 2019, 20:13
28 май 2019, 20:13
ddb5d0d
Код
Авторство
О чём код?
// compile // Copyright 2019 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 p type T struct { b bool string } func f() { var b bool var t T for { switch &t.b { case &b: if b { } } } }