blob: 5c9dedd2ca27d58f34f3071e93df0c2d2566b3c6 [file] [log] [blame]
package maps
func _() {
var aVar int //@item(mapVar, "aVar", "int", "var")
// not comparabale
type aSlice []int //@item(mapSliceType, "aSlice", "[]int", "type")
*aSlice //@item(mapSliceTypePtr, "*aSlice", "[]int", "type")
// comparable
type aStruct struct{} //@item(mapStructType, "aStruct", "struct{...}", "struct")
map[]a{} //@complete("]", mapSliceTypePtr, mapStructType, mapVar)
map[a]a{} //@complete("]", mapSliceTypePtr, mapStructType, mapVar)
map[a]a{} //@complete("{", mapSliceType, mapStructType, mapVar)
}