Skip to content
New issue

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

x/tools/cmd/goimports: does not consider "internal" restrictions #15993

Closed
fedyakin opened this issue Jun 7, 2016 · 1 comment
Closed

x/tools/cmd/goimports: does not consider "internal" restrictions #15993

fedyakin opened this issue Jun 7, 2016 · 1 comment
Labels
FrozenDueToAge Tools This label describes issues relating to any tools in the x/tools repository.
Milestone

Comments

@fedyakin
Copy link

fedyakin commented Jun 7, 2016

  1. What version of Go are you using (go version)?
    go version go1.6 windows/amd64
  2. What operating system and processor architecture are you using (go env)?
set GOARCH=amd64
set GOBIN=
set GOEXE=.exe
set GOHOSTARCH=amd64
set GOHOSTOS=windows
set GOOS=windows
set GOPATH=D:\dev
set GORACE=
set GOROOT=C:\Go
set GOTOOLDIR=C:\Go\pkg\tool\windows_amd64
set GO15VENDOREXPERIMENT=1
set CC=gcc
set GOGCCFLAGS=-m64 -mthreads -fmessage-length=0
set CXX=g++
set CGO_ENABLED=1
  1. What did you do?

I created two internal packages with the same name, but in different trees. I was able to reproduce the problem with the following small example.
D:\dev\src\github.com\issue\package1\internal\foo\foo.go

package foo

func Bar() {
}

and
D:\dev\src\github.com\issue\package2\internal\foo\foo.go

package foo

func Bar() {
}

Then create a file that uses the internal package.
D:\dev\src\github.com\issue\package1\main\main.go

package main

func main() {
    foo.Bar()
}

Finally, run goimports on main.go.

  1. What did you expect to see?
    I expected import "github.com/issue/package1/internal/foo" to be added to main.go. Which foo to choose should have been unambiguous since the other is not importable from package1/main.
  2. What did you see instead?
    goimports added import "github.com/issue/package2/internal/foo". I deleted the import statement and ran goimports several times. The package imported appeared to be random.
@ianlancetaylor ianlancetaylor added this to the Unreleased milestone Jun 7, 2016
@ianlancetaylor ianlancetaylor changed the title x/tools/cmd/goimports: Imports internal packages not under the file's root. x/tools/cmd/goimports: does not consider "internal" restrictions Jun 7, 2016
@gopherbot gopherbot added the Tools This label describes issues relating to any tools in the x/tools repository. label Sep 12, 2019
@heschi
Copy link
Contributor

heschi commented Nov 7, 2019

I've seen the code that fixes this, though I don't know when it went in.

@heschi heschi closed this as completed Nov 7, 2019
@golang golang locked and limited conversation to collaborators Nov 6, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge Tools This label describes issues relating to any tools in the x/tools repository.
Projects
None yet
Development

No branches or pull requests

4 participants