2014-10-01 17:23:05 +00:00
|
|
|
set_option pp.implicit true
|
|
|
|
set_option pp.universes true
|
2015-04-22 02:33:21 +00:00
|
|
|
section
|
2014-09-06 18:38:32 +00:00
|
|
|
parameter {A : Type}
|
|
|
|
definition foo : A → A → Type := (λ x y, Type)
|
|
|
|
inductive bar {a b : A} (f : foo a b) :=
|
|
|
|
bar2 : bar f
|
|
|
|
end
|