/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue45606.go
17 строк
283 B
Cuong Manh Le
cmd/compile: set correct Defn for inlined vars
23 апр 2021, 08:10
23 апр 2021, 08:10
d310b2a
Код
Авторство
О чём код?
// 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 x() { func() func() { return func() { f := func() {} g, _ := f, 0 g() } }()() }