lean2/tests/lean/run/local_using.lean
Leonardo de Moura e51c4ad2e9 feat(frontends/lean): rename 'using' command to 'open'
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-09-03 16:00:38 -07:00

22 lines
438 B
Text

variable N : Type.{1}
precedence `+`:65
namespace foo
variable a : N
variable f : N → N → N
infix + := f
end foo
namespace bla
variable b : N
variable f : N → N → N
infix + := f
end bla
variable g : N → N → N
open foo
open bla
print raw a + b -- + is overloaded, it creates a choice
print raw #foo a + b -- + is not overloaded, we are parsing inside #foo
print raw g (#foo a + b) (#bla a + b) -- mixing both