diff options
Diffstat (limited to 'src/go/build/testdata/other/main.go')
-rw-r--r-- | src/go/build/testdata/other/main.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/go/build/testdata/other/main.go b/src/go/build/testdata/other/main.go new file mode 100644 index 0000000..e090435 --- /dev/null +++ b/src/go/build/testdata/other/main.go @@ -0,0 +1,11 @@ +// Test data - not compiled. + +package main + +import ( + "./file" +) + +func main() { + file.F() +} |