The function `kabstractWithPred` was never used, and introduced the bug exposed by issue #1235. fixes #1235
8 lines
160 B
Text
8 lines
160 B
Text
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
|