github.com/switchupcb/yaegi@v0.10.2/_test/redeclaration-global1.go (about)

     1  package main
     2  
     3  var time int
     4  
     5  type time string
     6  
     7  func main() {
     8  	var t time = "hello"
     9  	println(t)
    10  }
    11  
    12  // TODO: expected redeclaration error.