/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue45947.go
16 строк
259 B
Cuong Manh Le
cmd/compile: do not substitute OGOTO inside a closure when inlining
05 май 2021, 21:03
05 май 2021, 21:03
95dde3f
Код
Авторство
О чём код?
// 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 p func f() { _ = func() func() { return func() { l: goto l } }() }