/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue33903.go
16 строк
305 B
Josh Bleecher Snyder
cmd/compile: handle infinite loops in shortcircuit pass
29 авг 2019, 20:41
29 авг 2019, 20:41
2393d16
Код
Авторство
О чём код?
// 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. // Check that the shortcircuit pass correctly handles infinite loops. package p func f() { var p, q bool for { p = p && q } }