/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue35652.go
28 строк
326 B
David Chase
cmd/compile: try harder to not use an empty src.XPos for a bogus line
22 ноя 2019, 06:06
22 ноя 2019, 06:06
0e02cfb
Код
Авторство
О чём код?
// 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 func e() { for true { if true { continue } } } func g() {} func f() { i := 0 if true { i++ } for true { continue g() } }