github.com/traefik/yaegi@v0.15.1/_test/method13.go (about)

     1  package main
     2  
     3  type Coord struct {
     4  	x, y int
     5  }
     6  
     7  func (c Coord) dist() int { return c.x*c.x + c.y*c.y }
     8  
     9  type Point struct {
    10  	Coord
    11  	z int
    12  }
    13  
    14  func main() {
    15  	o := Point{Coord{3, 4}, 5}
    16  	f := o.dist
    17  	println(f())
    18  }
    19  
    20  // Output:
    21  // 25