Skip to content

Commit 1d89199

Browse files
committed
fix!
1 parent 3d5efaa commit 1d89199

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/lean/run/10934.lean

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ set_option trace.compiler.ir.result true
33
/--
44
trace: [Compiler.IR] [result]
55
def _example (x_1 : u8) (x_2 : u8) : u8 :=
6-
case x_1 : u8 of
6+
case x_2 : u8 of
77
Bool.false →
8-
case x_2 : u8 of
8+
case x_1 : u8 of
99
Bool.false →
1010
let x_3 : u8 := 1;
1111
ret x_3
1212
Bool.true →
13-
ret x_1
13+
ret x_2
1414
Bool.true →
15-
ret x_2
15+
ret x_1
1616
def _example._boxed (x_1 : tagged) (x_2 : tagged) : tagged :=
1717
let x_3 : u8 := unbox x_1;
1818
let x_4 : u8 := unbox x_2;

0 commit comments

Comments
 (0)