/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue45323.go
24 строки
346 B
Keith Randall
cmd/compile: fix bug in phiopt pass
02 апр 2021, 08:24
02 апр 2021, 08:24
aebc0b4
Код
Авторство
О чём код?
// compile // Copyright 2021 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 main func g() bool func f(y int) bool { b, ok := true, false if y > 1 { ok = g() } if !ok { ok = g() b = false } if !ok { return false } return b }