github.com/traefik/yaegi@v0.15.1/_test/redeclaration-global4.go (about)

     1  package main
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  type time string
     8  
     9  func main() {
    10  	var t time = "hello"
    11  	println(t)
    12  }
    13  
    14  // Error:
    15  // ../_test/redeclaration-global4.go:7:6: time redeclared in this block