/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue10441.go
17 строк
280 B
Ian Lance Taylor
test: change issue10441.go from "build" to "compile"
14 авг 2021, 00:43
14 авг 2021, 00:43
a95f1b5
Код
Авторство
О чём код?
// compile // Copyright 2015 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 bar() { f := func() {} foo(&f) } //go:noinline func foo(f *func()) func() { return *f }