2014-08-24 19:58:48 -07:00
|
|
|
import logic
|
2014-09-03 16:00:38 -07:00
|
|
|
open tactic
|
2014-07-14 06:27:36 +01:00
|
|
|
|
|
|
|
section
|
|
|
|
set_option pp.universes true
|
|
|
|
set_option pp.implicit true
|
2014-10-09 07:13:06 -07:00
|
|
|
variable {A : Type}
|
|
|
|
variables {a b : A}
|
|
|
|
variable H : a = b
|
2014-10-03 09:09:27 -07:00
|
|
|
include H
|
2014-07-14 06:27:36 +01:00
|
|
|
theorem test : a = b ∧ a = a
|
2014-10-03 09:09:27 -07:00
|
|
|
:= by apply and.intro; assumption; apply eq.refl
|
2014-07-14 06:27:36 +01:00
|
|
|
end
|
|
|
|
|
2014-09-03 16:00:38 -07:00
|
|
|
check @test
|