15 lines
279 B
Text
15 lines
279 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
|
|
include H
|
|
theorem test : a = b ∧ a = a
|
|
:= by apply and.intro; assumption; apply eq.refl
|
|
end
|
|
|
|
check @test
|