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
14 lines
255 B
OpenEdge ABL
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
|
|
};
|
|
|
|
%}
|