gcc/libgo/misc/cgo/testshared/testdata/exe2/exe2.go
2019-09-06 18:12:46 +00:00

9 lines
111 B
Go

package main
import "testshared/dep2"
func main() {
d := &dep2.Dep2{}
dep2.W = dep2.G() + 1 + d.Method()
}