1
0
mirror of https://github.com/golang/go synced 2024-11-07 16:36:24 -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()
}