We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: v1.1.0 The reproduction code: https://github.com/youxkei/goimportz-bug/tree/f2953b59fedf2fe37b3965d2007ea078765d9c25
$ cat a.go package main import ( "example.com/hoge-a" "example.com/hoge-b" ) func f() { hogea.F() } $ go run github.com/zchee/goimportz/cmd/goimportz a.go package main import ( "example.com/hoge-a" hogea "example.com/hoge-a" ) func f() { hogea.F() }
In the above situation, gimportz somehow outputs source code in which "hoge-a" package is imported twice.
"hoge-a"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version: v1.1.0
The reproduction code: https://github.com/youxkei/goimportz-bug/tree/f2953b59fedf2fe37b3965d2007ea078765d9c25
In the above situation, gimportz somehow outputs source code in which
"hoge-a"
package is imported twice.The text was updated successfully, but these errors were encountered: