lean2/tests/lean/run/e9.lean
Leonardo de Moura 4f2e0c6d7f refactor(frontends/lean): add 'attribute' command
The new command provides a uniform way to set declaration attributes.
It replaces the commands: class, instance, coercion, multiple_instances,
reducible, irreducible
2015-01-24 20:23:21 -08:00

38 lines
668 B
Text

prelude
precedence `+`:65
namespace nat
constant nat : Type.{1}
constant add : nat → nat → nat
infixl + := add
end nat
namespace int
open nat (nat)
constant int : Type.{1}
constant add : int → int → int
infixl + := add
constant of_nat : nat → int
end int
namespace int_coercions
persistent attribute int.of_nat [coercion]
end int_coercions
-- Open "only" the notation and declarations from the namespaces nat and int
open nat
open int
constants n m : nat
constants i j : int
check n + m
check i + j
section
-- Temporarily use the int_coercions
open int_coercions
check n + i
end
-- The following one is an error
-- check n + i