We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afa19f5 commit 2aa9fd9Copy full SHA for 2aa9fd9
20_struct/03_methods/main.go
@@ -9,6 +9,7 @@ type person struct {
9
}
10
11
func (p person) fullName() string {
12
+ p.fullName() // Uncomment this line and see the stack overflow!
13
return p.first + p.last
14
15
0 commit comments