Skip to content

Instantly share code, notes, and snippets.

@droxer
Created November 30, 2015 02:25
Show Gist options
  • Save droxer/49701e9f9e927f4225ce to your computer and use it in GitHub Desktop.
Save droxer/49701e9f9e927f4225ce to your computer and use it in GitHub Desktop.
Go embedded example.
package main
import (
"fmt"
)
type Pinger interface {
Ping()
}
type Ponger interface {
Pong()
}
type PingPonger struct {
Pinger
Ponger
}
func (p *PingPonger) Ping() {
fmt.Println("Ping")
}
func Call(pinger Pinger) {
pinger.Ping()
}
type PingPonger2 struct {
PingPonger
}
func (p *PingPonger2) Ping() {
fmt.Println("Ping2")
}
func main() {
rw := &PingPonger2{}
Call(rw)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment