fixed out-of-scope nested class definitions, added a test

enabled nested C structs assignment (still disabled for Octave), added Java runtime test
fixed nested_private test case for Java & C#
This commit is contained in:
Vladimir Kalinin 2013-12-04 01:53:42 +04:00
commit e1a4e11bea
6 changed files with 39 additions and 8 deletions

View file

@ -0,0 +1,14 @@
%module nested_scope
%inline %{
namespace ns {
struct Global {
struct Outer {
struct Nested;
};
struct Outer::Nested {
int data;
} instance;
};
}
%}