aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/tinygotest/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tinygotest/main.go')
-rw-r--r--tests/tinygotest/main.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/tinygotest/main.go b/tests/tinygotest/main.go
new file mode 100644
index 000000000..84ed97000
--- /dev/null
+++ b/tests/tinygotest/main.go
@@ -0,0 +1,14 @@
+package main
+
+import (
+ "fmt"
+)
+
+func main() {
+ Thing()
+ fmt.Println("normal main")
+}
+
+func Thing() {
+ fmt.Println("THING")
+}