git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11774 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
189 B
OpenEdge ABL
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 % 6
|
|
double d_array[12 % 6];
|
|
|
|
%}
|