Files
ANSLibs/swig-4.3.0/Examples/test-suite/errors/pp_unknowndirective2.i

12 lines
224 B
OpenEdge ABL
Raw Normal View History

%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