lean2/tests/lean/run/root.lean
Leonardo de Moura cbc81ea6c5 chore(*): minimize dependencies on tests
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-08-24 19:58:48 -07:00

17 lines
249 B
Text

import logic
using num
variable foo : Prop
namespace N1
variable foo : Prop
check N1.foo
check _root_.foo
namespace N2
variable foo : Prop
check N1.foo
check N1.N2.foo
print raw foo
print raw _root_.foo
end N2
end N1