lean2/tests/lean/run/tactic30.lean
2014-10-09 07:13:06 -07:00

15 lines
276 B
Text

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