lean2/tests/lean/run/tactic30.lean
Leonardo de Moura 2e6184a721 fix(frontends/lean): more bugs in section management
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-07-14 06:27:36 +01:00

14 lines
No EOL
280 B
Text

import standard
using 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 refl
end
check @test