27130c9499
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
12 lines
No EOL
318 B
Text
12 lines
No EOL
318 B
Text
variable A : Type.{1}
|
|
variable f : A → A → A
|
|
variable g : A → A → A
|
|
precedence `+` : 65
|
|
infixl + := f
|
|
infixl + := g
|
|
variable a : A
|
|
variable b : A
|
|
print raw a+b -- + is overloaded
|
|
check fun (h : A → A → A)
|
|
(infixl + := h), -- Like local declarations, local notation "shadows" global one.
|
|
a+b |