Skip to content

Commit

Permalink
fix case
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz committed Dec 13, 2022
1 parent 6850eba commit 565ac76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Core/positive/test046.jvc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inductive list {
cons : any -> list -> list;
};

def f := \l (case l of { cons x _ := x; nil := \x x } ) (let y := \x x in (let z := \x x in case l of { _ := \x x } z) y) 7;
def f := \l (case l of { cons x _ := x; nil := \x x } ) (let y := \x x in (let z := \x x in case l of { cons _ _ := \x x } z) y) 7;

def main := f (cons (\x \y x y + 2) nil);

Expand Down

0 comments on commit 565ac76

Please sign in to comment.