github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/redeclaration_global1.gno (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  // Error:
    13  // files/redeclaration_global1.gno:5:6: time redeclared in this block
    14  // 	previous declaration at files/redeclaration_global1.gno:3:5