diff options
Diffstat (limited to 'misc/cgo/testshared/testdata/exe2/exe2.go')
-rw-r--r-- | misc/cgo/testshared/testdata/exe2/exe2.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/misc/cgo/testshared/testdata/exe2/exe2.go b/misc/cgo/testshared/testdata/exe2/exe2.go new file mode 100644 index 0000000..433f331 --- /dev/null +++ b/misc/cgo/testshared/testdata/exe2/exe2.go @@ -0,0 +1,8 @@ +package main + +import "testshared/dep2" + +func main() { + d := &dep2.Dep2{} + dep2.W = dep2.G() + 1 + d.Method() +} |