``` go package main func main() { ages := map[string]int{} _ = &ages["bob"] // compile error: cannot take address of map element } ```