git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12464 626c5289-ae23-0410-ae9c-e8d60b6d4f22
23 lines
232 B
OpenEdge ABL
23 lines
232 B
OpenEdge ABL
// Test "Unexpected tokens after ..." errors
|
|
%module xxx
|
|
|
|
#ifndef AAA
|
|
#endif rubbish
|
|
|
|
#ifdef AAA
|
|
#endif rubbish
|
|
|
|
#ifdef AAA
|
|
#else rubbish
|
|
#endif
|
|
|
|
#define BBB
|
|
|
|
#ifdef BBB
|
|
#else
|
|
#endif rubbish
|
|
|
|
#if !defined(BBB)
|
|
#else rubbish
|
|
#endif
|
|
|