Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/constant_expr.i
2019-08-04 21:38:19 -05:00

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