Reilly Watson
Reilly Watson
Here's a sample app, that panics on HEAD. go.mod: ``` module testpkg go 1.18 ``` foo.go: ``` package main import ( "fmt" "testpkg/foo_test" ) func main() { fmt.Println(foo_test.Foo()) } ```...
Anonymous imports were being special-cased and written out separately. They're not that special though, we can just count them as regular imports with the name "_". This causes them to...
### Describe the bug If I have an anonymous import in a package that uses Wire, that import gets copied to wire_gen.go, but it gets copied in some separate import...