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

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