/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue48459.go
17 строк
259 B
Cuong Manh Le
cmd/compile: fix missing markHiddenClosureDead in deadcode pass
19 сен 2021, 05:43
19 сен 2021, 05:43
771b8ea
Код
Авторство
О чём код?
// 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 main func main() { if true { return } defer func() { recover() }() }