lean4-htt/tests/lean/unboxStruct.lean.expected.out
Cameron Zwarich d489c6196c chore: update expected test outputs
This makes it easier to distinguish tests that are actually
failing while we work on the new codegen.
2025-06-20 17:29:10 +02:00

9 lines
275 B
Text

[Compiler.IR] [result]
def test2 (x_1 : u32) (x_2 : obj) : obj :=
let x_3 : obj := foo x_1 x_2;
ret x_3
def test2._boxed (x_1 : obj) (x_2 : obj) : obj :=
let x_3 : u32 := unbox x_1;
dec x_1;
let x_4 : obj := test2 x_3 x_2;
ret x_4