enabled nested C structs assignment (still disabled for Octave), added Java runtime test fixed nested_private test case for Java & C#
14 lines
No EOL
165 B
OpenEdge ABL
14 lines
No EOL
165 B
OpenEdge ABL
%module nested_scope
|
|
|
|
%inline %{
|
|
namespace ns {
|
|
struct Global {
|
|
struct Outer {
|
|
struct Nested;
|
|
};
|
|
struct Outer::Nested {
|
|
int data;
|
|
} instance;
|
|
};
|
|
}
|
|
%} |