summaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/pp_unknowndirective2.i
blob: 889e6c5b2171d871429aef8d116e9d6c70827fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
%module xxx

#ifdef 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