diff options
Diffstat (limited to 'libgo/misc/cgo/testplugin/unnamed2.go')
-rw-r--r-- | libgo/misc/cgo/testplugin/unnamed2.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libgo/misc/cgo/testplugin/unnamed2.go b/libgo/misc/cgo/testplugin/unnamed2.go new file mode 100644 index 00000000000..55070d5e9f7 --- /dev/null +++ b/libgo/misc/cgo/testplugin/unnamed2.go @@ -0,0 +1,12 @@ +// Copyright 2016 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. + +package main + +// // No C code required. +import "C" + +func FuncInt() int { return 2 } + +func main() {} |