
* Changes to make vendored packages accept new home. * Fix go2idl to import vendored packages.
33 lines
440 B
Plaintext
33 lines
440 B
Plaintext
//
|
|
PACKAGE error1
|
|
|
|
IMPORTPATH
|
|
testdata/error1
|
|
|
|
FILENAMES
|
|
testdata/error1.go
|
|
|
|
TYPES
|
|
//
|
|
type I0 interface {
|
|
// When embedded, the predeclared error interface
|
|
// must remain visible in interface types.
|
|
error
|
|
}
|
|
|
|
//
|
|
type S0 struct {
|
|
// In struct types, an embedded error must only be visible
|
|
// if AllDecls is set.
|
|
error
|
|
}
|
|
|
|
//
|
|
type T0 struct {
|
|
ExportedField interface {
|
|
// error should be visible
|
|
error
|
|
}
|
|
}
|
|
|