libgo: update to go1.9
[official-gcc.git] / libgo / misc / cgo / testplugin / unnamed2.go
blob7ef66109c5ca6246e973cd92d757ff095be4d8cb
1 // Copyright 2016 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package main
7 // // No C code required.
8 import "C"
10 func FuncInt() int { return 2 }
12 func FuncRecursive() X { return X{} }
14 type Y struct {
15 X *X
17 type X struct {
18 Y Y
21 func main() {}