github.com/goplus/gop@v1.2.6/x/build/_testdata/multi/Rect.gox (about)

     1  var (
     2  	BaseClass
     3  	Width, Height float64
     4  	*AggClass
     5  )
     6  
     7  type BaseClass struct {
     8  	x int
     9  	y int
    10  }
    11  
    12  type AggClass struct{}
    13  
    14  func Area() float64 {
    15  	return Width * Height
    16  }