lean4-htt/tests/lean/omit.lean
2017-03-09 18:41:19 -08:00

22 lines
292 B
Text

prelude section
variable A : Type
variable a : A
variable c : A
omit A
include A
include A
omit A
variable B : Type
variable b : B
variable d : B
include A
include a
include c
definition foo := b
inductive tst (C : Type)
| mk : tst
end
#check foo
#check tst