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

8 lines
138 B
Text

open nat
example (n : nat) (h : n > 0) : succ n > 0 ∧ n = n :=
begin
split,
induction n generalizing h,
all_goals { admit },
end