1 | package a_test |
---|---|
2 | |
3 | import _ "a" |
4 | |
5 | func ExampleFoo() {} // OK because a.Foo exists |
6 | |
7 | func ExampleBar() {} // want "ExampleBar refers to unknown identifier: Bar" |
8 |
Members
1 | package a_test |
---|---|
2 | |
3 | import _ "a" |
4 | |
5 | func ExampleFoo() {} // OK because a.Foo exists |
6 | |
7 | func ExampleBar() {} // want "ExampleBar refers to unknown identifier: Bar" |
8 |