2014-10-02 16:20:52 -07:00
|
|
|
constant N : Type.{1}
|
2014-06-13 18:06:44 -07:00
|
|
|
namespace foo
|
2014-10-02 16:20:52 -07:00
|
|
|
constant N : Type.{2}
|
2014-06-13 18:06:44 -07:00
|
|
|
namespace tst
|
2014-10-02 16:20:52 -07:00
|
|
|
constant N : Type.{3}
|
2014-06-13 18:06:44 -07:00
|
|
|
print raw N
|
2014-08-07 16:59:08 -07:00
|
|
|
end tst
|
|
|
|
end foo
|
2014-06-13 18:06:44 -07:00
|
|
|
print raw N
|
|
|
|
namespace foo
|
|
|
|
print raw N
|
|
|
|
namespace tst
|
|
|
|
print raw N N -> N
|
|
|
|
section
|
2014-10-09 07:13:06 -07:00
|
|
|
variable N : Type.{4} -- Shadow previous ones.
|
2014-06-13 18:06:44 -07:00
|
|
|
print raw N
|
|
|
|
end
|
2014-08-07 16:59:08 -07:00
|
|
|
end tst
|
2014-10-02 16:20:52 -07:00
|
|
|
end foo
|