7 lines
139 B
Text
7 lines
139 B
Text
|
section
|
||
|
parameter {A : Type}
|
||
|
definition foo : A → A → Type := (λ x y, Type)
|
||
|
inductive bar {a b : A} (f : foo a b) :=
|
||
|
bar2 : bar f
|
||
|
end
|