I'm working with a somewhat bitrotted project and Go 1.8, and when I run gen in the root directory, I get a mysterious error:
$ gen
ast.go:20:2: could not import fmt (Config.Importer not installed)
exit status 1
This line is a normal import "fmt". The only results that are even close to this refer to the Go type resolver, which leads me to believe the problem is actually typewriter. It's difficult to know for sure, though, because there's not stack trace included.
I'm working with a somewhat bitrotted project and Go 1.8, and when I run
genin the root directory, I get a mysterious error:$ gen ast.go:20:2: could not import fmt (Config.Importer not installed) exit status 1This line is a normal
import "fmt". The only results that are even close to this refer to the Go type resolver, which leads me to believe the problem is actually typewriter. It's difficult to know for sure, though, because there's not stack trace included.