git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4844 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
359 B
OpenEdge ABL
18 lines
359 B
OpenEdge ABL
|
|
%module arrays_dimensionless
|
|
|
|
%warnfilter(462) globalints; /* Unable to set variable of type int [] */
|
|
%warnfilter(462) ints; /* Unable to set variable of type int [] */
|
|
|
|
%inline %{
|
|
|
|
int globalints[] = {100, 200, 300};
|
|
const int constglobalints[] = {400, 500, 600};
|
|
|
|
struct Bar {
|
|
static int ints[];
|
|
};
|
|
int Bar::ints[] = {700, 800, 900};
|
|
|
|
%}
|
|
|