This commit is contained in:
nora 2023-12-16 13:46:17 +01:00
parent 66d95dfeeb
commit 970b713cf6
2 changed files with 9 additions and 9 deletions

10
.gitignore vendored
View file

@ -1,6 +1,14 @@
# nix
.direnv
# tyepscript
/node_modules /node_modules
/target /target
*.tsbuildinfo *.tsbuildinfo
# riverdelta outputs/references
/*-example.wat /*-example.wat
/out.wat /out.wat
.direnv
# riverdelta test inputs
/*.nil

View file

@ -1,8 +0,0 @@
type A[T] = struct { a: T };
type B[T] = struct {
b: T,
};
function main() = ;
function test(b: B[I32]) = ;