11 lines
224 B
OpenEdge ABL
11 lines
224 B
OpenEdge ABL
%module xxx
|
|
|
|
#ifndef FOO
|
|
long long i;
|
|
/* Check we get an error for an unknown directive (this should be #elif).
|
|
* Unknown directives were silently ignored by SWIG < 3.0.3. */
|
|
#elsif defined(BAR)
|
|
long i;
|
|
#else
|
|
int i;
|
|
#endif
|