swig/Examples/test-suite/derived_nested.i
John Lenz 0fb8c59673 Three new broken test cases created to test various patches in the patch list.
Bugs 909389, 962115, and 899332.
These bugs all have fixes in the patch system.
Patches 903150, 914926, and 962168.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6110 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-08-23 07:06:01 +00:00

14 lines
255 B
OpenEdge ABL

/* This testcase tests nested derived classes.
This was reported in bug #909389 */
%module derived_nested
%inline %{
class A { int x; };
class B {
class C { int y; }; //generates a warning
class D : public A { int z; }; //generates an error
};
%}