diff options
Diffstat (limited to 'test/Preprocessor/pp-record.c')
-rw-r--r-- | test/Preprocessor/pp-record.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Preprocessor/pp-record.c b/test/Preprocessor/pp-record.c index f098683..dd958d0 100644 --- a/test/Preprocessor/pp-record.c +++ b/test/Preprocessor/pp-record.c @@ -10,3 +10,14 @@ #include STRINGIZE(INC) CAKE; + +#define DIR 1 +#define FNM(x) x + +FNM( +#if DIR + int a; +#else + int b; +#endif +) |