/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/bug460.dir/b.go
17 строк
479 B
Matthew Dempsky
[dev.typeparams] test: update regress tests for types2
19 май 2021, 09:26
19 май 2021, 09:26
c81562d
Код
Авторство
О чём код?
// Copyright 2012 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 b import "./a" var x a.Foo func main() { x.int = 20 // ERROR "unexported field|undefined" x.int8 = 20 // ERROR "unexported field|undefined" x.error = nil // ERROR "unexported field|undefined" x.rune = 'a' // ERROR "unexported field|undefined" x.byte = 20 // ERROR "unexported field|undefined" }