| // | |
| 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 | |
| } | |
| } | |