/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue17194.go
17 строк
303 B
Keith Randall
cmd/compile: force folding of MOVDaddr into storezero
04 окт 2016, 19:10
04 окт 2016, 19:10
6300161
Код
Авторство
О чём код?
// 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 foo func f(x []interface{}) (err error) { for _, d := range x { _, ok := d.(*int) if ok { return } } return }