/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue45693.go
16 строк
291 B
Cherry Zhang
cmd/compile: keep call's args in elim dead auto pass
22 апр 2021, 19:38
22 апр 2021, 19:38
e8666ab
Код
Авторство
О чём код?
// 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. // Issue 45693: ICE with register args. package p func f() { var s string s = s + "" + s + "" + s + "" for { } }