mirror of
https://github.com/golang/go
synced 2024-11-11 20:01:37 -07:00
test: match gofrontend error messages
fixedbugs/bug487.go:17:17: error: function result count mismatch fixedbugs/bug487.go:18:16: error: function result count mismatch fixedbugs/issue6977.go:37:26: error: duplicate method ‘m’ fixedbugs/issue6977.go:38:21: error: duplicate method ‘m’ fixedbugs/issue6977.go:39:26: error: duplicate method ‘m’ fixedbugs/issue6977.go:40:21: error: duplicate method ‘m’ Change-Id: Ie3c8a4650cd8f4c239bdceac25dc188a6a50ca34 Reviewed-on: https://go-review.googlesource.com/c/go/+/275178 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com> Reviewed-by: Than McIntosh <thanm@google.com>
This commit is contained in:
parent
7f5a3196c9
commit
bacb307b80
@ -14,8 +14,8 @@ func G() (int, int, int) {
|
||||
}
|
||||
|
||||
func F() {
|
||||
a, b := G() // ERROR "assignment mismatch"
|
||||
a, b = G() // ERROR "assignment mismatch"
|
||||
a, b := G() // ERROR "mismatch"
|
||||
a, b = G() // ERROR "mismatch"
|
||||
_, _ = a, b
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,7 @@ type U3 interface { M; m() }
|
||||
type U4 interface { M; M; M }
|
||||
type U5 interface { U1; U2; U3; U4 }
|
||||
|
||||
type U6 interface { m(); m() } // ERROR "duplicate method m"
|
||||
type U7 interface { M32; m() } // ERROR "duplicate method m"
|
||||
type U8 interface { m(); M32 } // ERROR "duplicate method m"
|
||||
type U9 interface { M32; M64 } // ERROR "duplicate method m"
|
||||
type U6 interface { m(); m() } // ERROR "duplicate method .*m"
|
||||
type U7 interface { M32; m() } // ERROR "duplicate method .*m"
|
||||
type U8 interface { m(); M32 } // ERROR "duplicate method .*m"
|
||||
type U9 interface { M32; M64 } // ERROR "duplicate method .*m"
|
||||
|
Loading…
Reference in New Issue
Block a user