Fixed a segfault.

This commit is contained in:
Samuel Hammersberg 2023-03-24 19:57:49 +01:00
parent f531afb3ab
commit 7e246a94e5
5 changed files with 82 additions and 76 deletions

View file

@ -1,8 +1,9 @@
add : Int ;
add = 4;
main : Int ;
main = case add of {
5 => 0;
_ => 1;
data True() where {
True: True()
};
main: Int;
main =
case True of {
True => 1;
_ => 0;
};