lean4-htt/tests/elab/lambdaLiftCache.lean.out.expected
Garmelon 08eb78a5b2
chore: switch to new test/bench suite (#12590)
This PR sets up the new integrated test/bench suite. It then migrates
all benchmarks and some related tests to the new suite. There's also
some documentation and some linting.

For now, a lot of the old tests are left alone so this PR doesn't become
even larger than it already is. Eventually, all tests should be migrated
to the new suite though so there isn't a confusing mix of two systems.
2026-02-25 13:51:53 +00:00

14 lines
393 B
Text

[Compiler.saveMono] size: 1
def foo._lam_0 x x.1 : Nat :=
let _x.2 := Nat.add x.1 x;
return _x.2
[Compiler.saveMono] size: 2
def foo x xs : List Nat :=
let _f.1 := foo._lam_0 x;
let _x.2 := map _f.1 xs;
return _x.2
[Compiler.saveMono] size: 2
def boo x xs : List Nat :=
let _f.1 := foo._lam_0 x;
let _x.2 := map _f.1 xs;
return _x.2