/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue6406.go
12 строк
271 B
Daniel Morsing
cmd/gc: silence assignment errors to undefined symbols
04 янв 2014, 00:03
04 янв 2014, 00:03
f2e94b5
Код
Авторство
О чём код?
// errorcheck // Copyright 2014 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() { s = "bob" // ERROR "undefined.*s" _ = s // ERROR "undefined.*s" }