Sign in
go
/
vgo
/
9d567625acf4c5e156b9890bf6feb16eb9fa5c51
/
.
/
vendor
/
cmd
/
go
/
testdata
/
norunexample
/
example_test.go
blob: e158305a6c8cd93adf036b2f6234d3b88f98021d [
file
] [
log
] [
blame
]
package pkg_test
import "os"
func init() {
os.Stdout.Write([]byte("File with non-runnable example was built.\n"))
}
func Example_test() {
// This test will not be run, it has no "Output:" comment.
}