1
0
mirror of https://github.com/golang/go synced 2024-11-08 18:16:10 -07:00
go/misc/cgo/testshared/testdata/exe2/exe2.go

9 lines
111 B
Go
Raw Normal View History

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