diff options
Diffstat (limited to 'tools/gotest/main.go')
-rw-r--r-- | tools/gotest/main.go | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/gotest/main.go b/tools/gotest/main.go deleted file mode 100644 index 99218c077617..000000000000 --- a/tools/gotest/main.go +++ /dev/null @@ -1,16 +0,0 @@ -// This program just exists to import some libraries and demonstrate -// that the build works, it doesn't do anything useful. -package main - -import ( - "fmt" - "somelib" - "someproto" -) - -func main() { - p := someproto.Person{ - Name: somelib.Name(), - } - fmt.Println(somelib.Greet(fmt.Sprintf("%v", p))) -} |