Fix testcase warning for languages that don't fully support nested classes

This commit is contained in:
William S Fulton 2019-07-12 08:26:26 +01:00
commit 1e11085d5f

View file

@ -9,6 +9,11 @@
%interface(IA)
#endif
#if !defined(SWIGCSHARP) && !defined(SWIGJAVA)
%feature ("flatnested");
#endif
%inline %{
struct IA {};
struct B { struct N : IA {}; };