github.com/golangci/go-tools@v0.0.0-20190318060251-af6baa5dc196/unused/testdata/src/mapslice/mapslice.go (about)

     1  package pkg
     2  
     3  type M map[int]int
     4  
     5  func Fn() {
     6  	var n M
     7  	_ = []M{n}
     8  }