Go imports deletes the termbox import in the following code: ``` package main import "fmt" import "github.com/nsf/termbox-go" func main() { fmt.Println(termbox.Size()) } ``` A named import however works: ``` import termbox "github.com/nsf/termbox-go" ``` works fine. If such package naming should be banned (could be a good idea) go vet could warn about them.