17 lines
159 B
OpenEdge ABL
17 lines
159 B
OpenEdge ABL
%module using_namespace_loop
|
|
|
|
%inline {
|
|
namespace A {
|
|
struct Foo;
|
|
}
|
|
|
|
namespace B {
|
|
using namespace A;
|
|
}
|
|
|
|
namespace A {
|
|
using namespace B;
|
|
typedef Foo Bar;
|
|
}
|
|
}
|