lean4-htt/tests/lean/structAutoBound.lean.expected.out
Leonardo de Moura 2652cc18b8
chore: error messages consistency (#10143)
This PR standardizes error messages by quoting names with backticks. The
changes were automated, so some cases may still be missing.
2025-08-26 17:55:43 +00:00

16 lines
621 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.

structure Foo.{v, u_1} {α : Sort u_1} (β : α → Type v) : Sort (max u_1 (v + 1))
number of parameters: 2
fields:
Foo.a : α
Foo.b : β self.a
constructor:
Foo.mk.{v, u_1} {α : Sort u_1} {β : α → Type v} (a : α) (b : β a) : Foo β
structAutoBound.lean:9:15-9:16: error: a universe level named `u` has already been declared
structure Boo.{u, v} (α : Type u) (β : Type v) : Type (max u v)
number of parameters: 2
fields:
Boo.a : α
Boo.b : β
constructor:
Boo.mk.{u, v} {α : Type u} {β : Type v} (a : α) (b : β) : Boo α β
structAutoBound.lean:18:10-18:44: error: unused universe parameter 'w'