mirror of
https://github.com/golang/go
synced 2024-11-05 17:26:11 -07:00
85e3c9e6b8
CL 21462 and CL 21463 made this message say explicitly that the problem was a struct field in a map, but the word "directly" is unnecessary, sounds wrong, and makes the error long. Change-Id: I2fb68cdaeb8bd94776b8022cf3eae751919ccf6f Reviewed-on: https://go-review.googlesource.com/23373 Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: David Chase <drchase@google.com>
16 lines
483 B
Go
16 lines
483 B
Go
// errorcheck
|
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Issue 13779: provide better error message when directly assigning to struct field in map
|
|
|
|
package main
|
|
|
|
func main() {
|
|
type person struct{ age, weight, height int }
|
|
students := map[string]person{"sally": person{12, 50, 32}}
|
|
students["sally"].age = 3 // ERROR "cannot assign to struct field .* in map"
|
|
}
|