lean4-htt/tests/lean/structAutoBound.lean.expected.out
2022-03-08 17:48:46 -08:00

10 lines
537 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))
number of parameters: 2
constructors:
Foo.mk : {α : Sort u_1} → {β : α → Type v} → (a : α) → β a → Foo β
structAutoBound.lean:9:15-9:16: error: a universe level named 'u' has already been declared
inductive Boo.{u, v} : Type u → Type v → Type (max u v)
number of parameters: 2
constructors:
Boo.mk : {α : Type u} → {β : Type v} → α → β → Boo α β
structAutoBound.lean:18:0-20:7: error: unused universe parameter 'w'