lean4-htt/tests/lean/consumePPHint.lean
Leonardo de Moura 3b259afaf0 chore: fix tests
2022-06-14 16:43:22 -07:00

10 lines
252 B
Text

opaque p : Nat → Prop
opaque q : Nat → Prop
theorem p_of_q : q x → p x := sorry
theorem pletfun : p (let_fun x := 0; x + 1) := by
-- ⊢ p (let_fun x := 0; x + 1)
apply p_of_q
trace_state -- `let_fun` hint should not be consumed.
sorry