/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue17710.go
13 строк
252 B
Keith Randall
cmd/compile: On a runtime.KeepAlive call, keep whole variable alive
03 ноя 2016, 00:29
03 ноя 2016, 00:29
761443e
Код
Авторство
О чём код?
// compile // Copyright 2016 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 import "runtime" func f(x interface{}) { runtime.KeepAlive(x) }