diff options
Diffstat (limited to 'test/Preprocessor/macro_expand.c')
-rw-r--r-- | test/Preprocessor/macro_expand.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Preprocessor/macro_expand.c b/test/Preprocessor/macro_expand.c new file mode 100644 index 0000000000..69a4835c5a --- /dev/null +++ b/test/Preprocessor/macro_expand.c @@ -0,0 +1,7 @@ +// RUN: clang -E %s | grep '^Y$' + +#define X() Y +#define Y() X + +X()()() + |