summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/object/good/simple-class-call-method.tig
blob: ab9c0634bb893c0264761478937cc141c4ccb74b (plain)
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