added more manual tests

This commit is contained in:
sebastianselander 2023-03-22 10:32:22 +01:00
parent 24007313cb
commit 88a4a934b8
6 changed files with 67 additions and 19 deletions

10
sample-programs/basic-6 Normal file
View file

@ -0,0 +1,10 @@
data Bool () where {
True : Bool ()
False : Bool ()
};
main : Bool () -> _Int ;
main b = case b of {
False => 0;
True => 0
}