/trunk/Examples/test-suite/using_namespace_loop.i
# · Swig · 16 lines · 13 code · 3 blank · 0 comment · 0 complexity · b4e8e1ecf7f7ae7de001a363689f4f20 MD5 · raw file
- %module using_namespace_loop
- %inline {
- namespace A {
- struct Foo;
- }
- namespace B {
- using namespace A;
- }
- namespace A {
- using namespace B;
- typedef Foo Bar;
- }
- }