allocators and type aliases

This commit is contained in:
nora 2023-08-03 13:22:35 +02:00
parent 60c743d656
commit f05e5520f3
16 changed files with 283 additions and 121 deletions

View file

@ -0,0 +1,7 @@
//@check-pass
type A = (Int, Int);
function main() = (
let a: A = (0, 0);
);

View file

@ -1,6 +1,6 @@
//@check-pass
type CustomType = {};
type CustomType = struct {};
function main() = ();