2014-06-26 17:30:43 +00:00
|
|
|
precedence `+`:65
|
|
|
|
|
|
|
|
namespace nat
|
|
|
|
variable nat : Type.{1}
|
|
|
|
variable add : nat → nat → nat
|
|
|
|
infixl + := add
|
2014-08-07 23:59:08 +00:00
|
|
|
end nat
|
2014-06-26 17:30:43 +00:00
|
|
|
|
|
|
|
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
|
2014-08-07 23:59:08 +00:00
|
|
|
end coercions
|
|
|
|
end int
|
2014-06-26 17:30:43 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|