about summary refs log tree commit diff
path: root/tools/gotest/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gotest/main.go')
-rw-r--r--tools/gotest/main.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/gotest/main.go b/tools/gotest/main.go
deleted file mode 100644
index 99218c0776..0000000000
--- 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)))
-}