5549295c47
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
6 lines
139 B
Text
6 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
|