lean4-htt/tests/lean/1235.lean
Leonardo de Moura e442fbbf54 fix: remove kabstractWithPred
The function `kabstractWithPred` was never used, and introduced the
bug exposed by issue #1235.

fixes #1235
2022-06-20 16:35:18 -07:00

8 lines
160 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

opaque f (a b : Nat) : Nat
example : f 1 2 = f 2 1 := by
generalize h : f 1 = g
/- g :
h : f 1 = g
⊢ g 2 = f 2 1 -/
trace_state
sorry