-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
go/types: comparison of Defined (Named) types fails #35265
Comments
Change https://golang.org/cl/204477 mentions this issue: |
cc @griesemer |
This is working as intended. The bug is not in The bug in the sample program provided is that package main
import (
"fmt"
"go/importer"
"go/token"
"go/types"
)
const importThis = "."
type SType struct{}
var SInstance SType
func main() {
theScope := importScope(importThis)
typeofSType := theScope.Lookup("SType").Type()
theSameScope := importScope(importThis)
typeofSInstance := theSameScope.Lookup("SInstance").Type()
if types.AssignableTo(typeofSInstance, typeofSType) {
fmt.Println("EXPECTED.")
} else {
fmt.Println("UNEXPECTED!")
}
}
// A single goImporter must be used for all imports to ensure
// identical Objects and types are properly canonicalized.
var goImporter = importer.ForCompiler(token.NewFileSet(), "source", nil)
func importScope(importpath string) *types.Scope {
// goImporter := importer.ForCompiler(token.NewFileSet(), "source", nil) // <<< THIS IS THE BUG
pkg, err := goImporter.Import(importpath)
if err != nil {
panic(`run it from source dir to make const "importThis" true`)
}
return pkg.Scope()
} |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
What did you expect to see?
What did you see instead?
The text was updated successfully, but these errors were encountered: