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 dd958d0..48000ed 100644 --- a/test/Preprocessor/pp-record.c +++ b/test/Preprocessor/pp-record.c @@ -21,3 +21,14 @@ FNM( int b; #endif ) + +#define M1 c +#define M2 int +#define FM2(x,y) y x +FM2(M1, M2); + +#define FM3(x) x +FM3( +#define M3 int x2 +) +M3; |