4946f55290
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
17 lines
240 B
Text
17 lines
240 B
Text
import logic
|
|
|
|
|
|
constant foo : Prop
|
|
|
|
namespace N1
|
|
constant foo : Prop
|
|
check N1.foo
|
|
check _root_.foo
|
|
namespace N2
|
|
constant foo : Prop
|
|
check N1.foo
|
|
check N1.N2.foo
|
|
print raw foo
|
|
print raw _root_.foo
|
|
end N2
|
|
end N1
|