swig/Examples/test-suite/constant_expr.i
William S Fulton edd0a06409 fix 0 sized array compile error in test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11981 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2010-04-08 20:22:03 +00:00

11 lines
189 B
OpenEdge ABL

%module constant_expr;
/* Tests of constant expressions. */
%inline %{
/* % didn't work in SWIG 1.3.40 and earlier. */
const int X = 123%7;
#define FOO 12 % 9
double d_array[12 % 9];
%}