Closed vinayb21 closed 4 years ago
Raised an issue in the golang project: https://github.com/golang/go/issues/28291
Possible cause of this issue: A recent update 3 days ago in which on line 212 of https://github.com/golang/tools/blob/master/go/internal/gcimporter/bexport.go was changed to if obj.IsAlias() from if isAlias(obj)
https://github.com/golang/tools/blob/master/go/internal/gcimporter/bexport.go
if obj.IsAlias()
if isAlias(obj)
PR for the fix: https://github.com/golang/tools/pull/52
Raised an issue in the golang project: https://github.com/golang/go/issues/28291
Possible cause of this issue: A recent update 3 days ago in which on line 212 of
https://github.com/golang/tools/blob/master/go/internal/gcimporter/bexport.go
was changed toif obj.IsAlias()
fromif isAlias(obj)
PR for the fix: https://github.com/golang/tools/pull/52