9 lines
188 B
Text
9 lines
188 B
Text
def test : (λ x => x)
|
|
=
|
|
(λ x : Nat =>
|
|
let_fun foo := λ y => id (id y)
|
|
foo x) := by
|
|
conv =>
|
|
pattern (id _)
|
|
trace_state
|
|
skip
|