diff options
Diffstat (limited to 'test/Preprocessor/macro_disable4.c')
-rw-r--r-- | test/Preprocessor/macro_disable4.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Preprocessor/macro_disable4.c b/test/Preprocessor/macro_disable4.c new file mode 100644 index 0000000000..4858813a0e --- /dev/null +++ b/test/Preprocessor/macro_disable4.c @@ -0,0 +1,6 @@ +// RUN: clang -P -E %s | grep 'int f(void)' +// PR1820 + +#define f(x) h(x +#define h(x) x(void) +extern int f(f)); |