1 2 3 4 5 6 7 8 9 10
let class B { var a := 42 method m() : int = self.a } var b := new B in b.m() end