lean2/tests/lean/run/e13.lean
Leonardo de Moura 5e0e737213 feat(library/scoped_ext): do not import 'children' namespace objects
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-06-26 10:32:34 -07:00

26 lines
474 B
Text

precedence `+`:65
namespace nat
variable nat : Type.{1}
variable add : nat → nat → nat
infixl + := add
end
namespace int
using nat (nat)
variable int : Type.{1}
variable add : int → int → int
infixl + := add
variable of_nat : nat → int
namespace coercions
coercion of_nat
end
end
using nat
using int
variables n m : nat
check n+m -- coercion nat -> int is not available
using int.coercions
check n+m -- coercion nat -> int is available