summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/object/type/class-as-bad-parameter.tig
blob: 32b66a220b8b33e38d34690ace1f022e6951ef0d (plain)
1
2
3
4
5
6
7
let
  type Entity = class {}
  var a := new Entity
  var b := new Entity
in
  strcmp(a, b)
end