2014-11-30 21:16:01 -08:00
|
|
|
prelude section
|
2014-10-09 07:13:06 -07:00
|
|
|
variable A : Type
|
|
|
|
variable a : A
|
|
|
|
variable c : A
|
2014-10-03 07:23:24 -07:00
|
|
|
omit A
|
|
|
|
include A
|
|
|
|
include A
|
|
|
|
omit A
|
2014-10-09 07:13:06 -07:00
|
|
|
variable B : Type
|
|
|
|
variable b : B
|
|
|
|
variable d : B
|
2014-10-03 07:23:24 -07:00
|
|
|
include A
|
|
|
|
include a
|
|
|
|
include c
|
|
|
|
definition foo := b
|
|
|
|
|
|
|
|
inductive tst (C : Type) :=
|
|
|
|
mk : tst C
|
|
|
|
end
|
|
|
|
|
|
|
|
check foo
|
|
|
|
check tst
|