fuzz: test addition of dummy main

Change-Id: I89d27cafbd3e5ac69b8eda82b9bad202747155c1
Reviewed-on: https://go-review.googlesource.com/48963
Reviewed-by: Kevin Burke <kev@inburke.com>
diff --git a/fuzz/main.go b/fuzz/main.go
new file mode 100644
index 0000000..4012df3
--- /dev/null
+++ b/fuzz/main.go
@@ -0,0 +1,12 @@
+// Copyright 2017 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// The fuzz program is a simple scratch program for review purposes
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("containers rule!")
+}