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, 16 insertions, 0 deletions
diff --git a/tools/gotest/main.go b/tools/gotest/main.go
new file mode 100644
index 0000000000..99218c0776
--- /dev/null
+++ b/tools/gotest/main.go
@@ -0,0 +1,16 @@
+// 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)))
+}