fuzz: test addition of dummy main

Change-Id: I89d27cafbd3e5ac69b8eda82b9bad202747155c1
Reviewed-on: https://go-review.googlesource.com/48963
Reviewed-by: Kevin Burke <kev@inburke.com>
This commit is contained in:
Patrick Bennett 2017-07-15 14:58:47 -06:00 коммит произвёл Kevin Burke
Родитель 7e547f24df
Коммит 5d3fd457b4
1 изменённых файлов: 12 добавлений и 0 удалений

12
fuzz/main.go Normal file
Просмотреть файл

@ -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!")
}