Skip to content

Commit 5aa448f

Browse files
test: add test case for issue 4365
This is an update of http://golang.org/cl/151410043 by Tim Shen. Change-Id: I43ab7fcedd785059c535f45a3c8cdb7b618c1499 Reviewed-on: https://go-review.googlesource.com/4873 Reviewed-by: David Crawshaw <[email protected]>
1 parent b7bfb54 commit 5aa448f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

test/fixedbugs/issue4365.go

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// errorcheck
2+
3+
// Copyright 2015 The Go Authors. All rights reserved.
4+
// Use of this source code is governed by a BSD-style
5+
// license that can be found in the LICENSE file.
6+
7+
// Test that fields hide promoted methods.
8+
// http://golang.org/issue/4365
9+
10+
package main
11+
12+
type T interface {
13+
M()
14+
}
15+
16+
type M struct{}
17+
18+
func (M) M() {}
19+
20+
type Foo struct {
21+
M
22+
}
23+
24+
func main() {
25+
var v T = Foo{} // ERROR "has no methods|not a method|cannot use"
26+
_ = v
27+
}

0 commit comments

Comments
 (0)