mirror of
https://github.com/golang/go
synced 2024-11-06 10:36:13 -07:00
7997e5f254
This is close to what the compiler used to say, except now we say "as T value" rather than "as type T" which is closer to the truth (we cannot use a value as a type, after all). Also, place the primary error and the explanation (cause) on a single line. Make respective (single line) adjustment to the matching "cannot convert" error. Adjust various tests. For #55326. Change-Id: Ib646cf906b11f4129b7ed0c38cf16471f9266b88 Reviewed-on: https://go-review.googlesource.com/c/go/+/436176 Reviewed-by: Robert Griesemer <gri@google.com> Run-TryBot: Robert Griesemer <gri@google.com> Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Robert Findley <rfindley@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
18 lines
385 B
Go
18 lines
385 B
Go
// errorcheck
|
|
|
|
// Copyright 2013 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 5358: incorrect error message when using f(g()) form on ... args.
|
|
|
|
package main
|
|
|
|
func f(x int, y ...int) {}
|
|
|
|
func g() (int, []int)
|
|
|
|
func main() {
|
|
f(g()) // ERROR "as int value in|incompatible type"
|
|
}
|