github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/map0.gno (about)

     1  package main
     2  
     3  func main() {
     4  	m := map[string]string{
     5  		"hello": "foo",
     6  		"world": "bar",
     7  		"hello": "",
     8  	}
     9  }
    10  
    11  // Error:
    12  // duplicate key "hello" in map literal