git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12640 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
146 B
OpenEdge ABL
14 lines
146 B
OpenEdge ABL
%module using_namespace_loop
|
|
|
|
%inline {
|
|
namespace A {}
|
|
|
|
namespace B {
|
|
using namespace A;
|
|
}
|
|
|
|
namespace A {
|
|
using namespace B;
|
|
typedef Foo Bar;
|
|
}
|
|
}
|