Stop using relative imports and add a go.mod file. Tested against Go 1.6 through Go pre-1.13, and gccgo.
8 lines
74 B
Go
8 lines
74 B
Go
package main
|
|
|
|
import . "global_ns_arg"
|
|
|
|
func main() {
|
|
Foo(1)
|
|
Bar_fn()
|
|
}
|