lean2/tests/lean/run/indbug2.lean

7 lines
139 B
Text
Raw Normal View History

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