type Point struct {
X int
Y int
}
func main() {
m := make(map[string]Point)
m["p1"] = Point{1,1}
m["p1"].X = 2
}
--------------
cannot assign to struct field m["p1"].X in map
view raw Point.go hosted with ❤ by GitHub