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