Stop using relative imports and add a go.mod file. Tested against Go 1.6 through Go pre-1.13, and gccgo.
8 lines
86 B
Go
8 lines
86 B
Go
package main
|
|
|
|
import . "overload_copy"
|
|
|
|
func main() {
|
|
f := NewFoo()
|
|
_ = NewFoo(f)
|
|
}
|