selectors.go
527 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// RUN: llgo -o %t %s
// RUN: %t 2>&1 | FileCheck %s
// CHECK: F1
// CHECK-NEXT: F2
// CHECK-NEXT: F1
// CHECK-NEXT: F2
package main
type S1 struct{}
type S2 struct {
S1
}
func (s S1) F1() {
println("F1")
}
func (s *S2) F2() {
println("F2")
}
func testUnnamedStructMethods() {
// Test method lookup on an unnamed struct type.
var x struct {
S1
S2
}
x.F1()
x.F2()
}
func main() {
var s S2
// Derive pointer-receiver function.
f1 := (*S2).F1
f1(&s)
f2 := (*S2).F2
f2(&s)
testUnnamedStructMethods()
}