lean2/tests/lean/run/tactic30.lean
Leonardo de Moura 364bba2129 feat(frontends/lean/inductive_cmd): prefix introduction rules with the name of the inductive datatype
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-09-04 17:26:36 -07:00

14 lines
280 B
Text

import logic
open tactic
section
set_option pp.universes true
set_option pp.implicit true
parameter {A : Type}
parameters {a b : A}
parameter H : a = b
theorem test : a = b ∧ a = a
:= including H, by apply and.intro; assumption; apply eq.refl
end
check @test