lean4-htt/tests/lean/structAutoBound.lean.expected.out
2020-12-21 07:34:48 -08:00

8 lines
479 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

inductive Foo.{v, u_1} : {α : Sort u_1} → (α → Type v) → Sort (max u_1 (v + 1))
constructors:
Foo.mk : {α : Sort u_1} → {β : α → Type v} → (a : α) → β a → Foo β
structAutoBound.lean:9:15: error: a universe level named 'u' has already been declared
inductive Boo.{u, v} : Type u → Type v → Type (max u v)
constructors:
Boo.mk : {α : Type u} → {β : Type v} → α → β → Boo α β
structAutoBound.lean:18:0: error: unused universe parameter 'w'