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

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  type T struct {
     8  	Name string
     9  }
    10  
    11  var m = make(map[string]*T)
    12  
    13  func main() {
    14  	fmt.Println(m)
    15  }
    16  
    17  // Output:
    18  // map[]