fix generics and stuff

This commit is contained in:
nora 2023-12-15 17:47:16 +01:00
parent 537c924a68
commit 1a0828bd32
8 changed files with 63 additions and 63 deletions

View file

@ -1,4 +1,6 @@
function main() = (
let list = std.list.new();
std.list.push(list, 0);
);
//@check-pass
type A[T] = struct { a: T };
function main() = ;
function test(a: A[I32]) = ;