lean4-htt/tests/lean/973b.lean

11 lines
268 B
Text

constant f : Nat → Nat
constant q : Nat → (Nat → Prop) → Nat
@[simp]
theorem ex {x : Nat} {p : Nat → Prop} (h₁ : p x) (h₂ : q x p = x) : f x = x :=
sorry
set_option trace.Meta.Tactic.simp.discharge true
theorem foo : f (f x) = x := by
simp
sorry