lean2/tests/lean/775.lean

10 lines
288 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.

open nat
tactic_notation T1 `:`:15 T2 := tactic.focus (tactic.and_then T1 (tactic.all_goals T2))
example (P Q : → Prop) (n m : ) (p : P n m) : Q n m ∧ false :=
begin
split,
revert m p, induction n : intro m; induction m : intro p,
state, repeat exact sorry
end