mirror of
https://github.com/golang/go
synced 2024-11-06 06:36:20 -07:00
9 lines
111 B
Go
9 lines
111 B
Go
|
package main
|
||
|
|
||
|
import "testshared/dep2"
|
||
|
|
||
|
func main() {
|
||
|
d := &dep2.Dep2{}
|
||
|
dep2.W = dep2.G() + 1 + d.Method()
|
||
|
}
|