lean4-htt/old_tests/tests/lean/run/trace_crash.lean
2018-04-10 12:56:55 -07:00

8 lines
204 B
Text

constant f : nat → nat → nat
constant fax1 : ∀ x, f x x = f x 0
constant fax2 : ∀ x, f x 0 = x
set_option trace.type_context.is_def_eq true
example (a : nat) : f a a = a :=
by simp [fax1, fax2]