swig/Examples/test-suite/using_namespace_loop.i
Stefan Zager e629b192e2 Fixed the argument counts passed to SWIG_Python_UnpackTuple for varargs.
Removed obsolete methods from std_map.i and pyiterators.swg.

Added builtin-check target to python test suite Makefile.

Fixed using_namespace_loop.i so that the generated wrappers will compile.



git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12644 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2011-04-29 18:25:16 +00:00

16 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;
}
}