summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/object/type/bad-member-bindings.tig
blob: 86f48ea98e341161b4b56276b35e927c48c3efa6 (plain)
1
2
3
4
5
6
7
let
  type C = class {}
  var c := new C
in
  c.missing_method();
  c.missing_attribute
end