swig/SWIG/Examples/test-suite/arrays_dimensionless.i
William S Fulton 664a3638bb New testcase
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4844 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-06-01 23:11:11 +00:00

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};
%}