This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
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