lean2/tests/lean/run/local_using.lean

25 lines
442 B
Text
Raw Normal View History

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
using foo
using 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