lean2/tests/lean/run/tactic29.lean
Leonardo de Moura cbc81ea6c5 chore(*): minimize dependencies on tests
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-24 19:58:48 -07:00

18 lines
No EOL
320 B
Text

import logic
using tactic
section
set_option pp.universes true
set_option pp.implicit true
parameter {A : Type}
parameters {a b : A}
parameter H : a = b
parameters H1 H2 : b = a
check H1
check H
check H2
theorem test : a = b ∧ a = a
:= by apply and_intro; apply H; apply refl
end
check @test