Sign in
◑
Theme
go
/
website
/
6fe8931a73bec2b2d07c4f7597776560ecf9ca14
/
.
/
_content
/
talks
/
2012
/
chat
/
support
/
embed.go
blob: fdecb210b1501de81bba763840617c04a4f1aaf0 [
file
]
// +build ignore,OMIT
package main
import "fmt"
type A struct{}
func (A) Hello() {
fmt.Println("Hello!")
}
type B struct {
A
}
// func (b B) Hello() { b.A.Hello() } // (implicitly!)
func main() {
var b B
b.Hello()
}