From: Siraaj Khandkar Date: Fri, 14 Sep 2018 17:55:17 +0000 (-0400) Subject: Add a couple of type (in)compatibility test cases X-Git-Url: https://git.xandkar.net/?p=tiger.ml.git;a=commitdiff_plain;h=3be8511c0587d12da978306068c143c71b49f57c Add a couple of type (in)compatibility test cases --- diff --git a/compiler/src/lib/tiger/tiger_test_cases.ml b/compiler/src/lib/tiger/tiger_test_cases.ml index 4902017..bff7efc 100644 --- a/compiler/src/lib/tiger/tiger_test_cases.ml +++ b/compiler/src/lib/tiger/tiger_test_cases.ml @@ -230,6 +230,38 @@ let micro = [ID "f"; LPAREN; STRING "a"; COMMA; INT 3; COMMA; ID "foo"; RPAREN] ~is_error_expected_semant:Error.is_unknown_id ) + ; ( let code = + "let + type a = int + type b = a + type c = b + var i : a := 2 + var j : c := 3 + in + i := j + end + " + in + Test.case + "Type aliases" + ~code + ) + ; ( let code = + "let + type a = {x:int, y:int} + type b = {x:int, y:int} /* new type generated */ + var foo : a := a {x = 1, y = 2} + var bar : b := b {x = 1, y = 2} + in + foo = bar /* incompatible types */ + end + " + in + Test.case + code + ~code + ~is_error_expected_semant:Error.is_wrong_type (* TODO: Be more specific *) + ) ] let all =