diff options
Diffstat (limited to 'clang/test/Preprocessor/macro_expandloc.c')
-rw-r--r-- | clang/test/Preprocessor/macro_expandloc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/macro_expandloc.c b/clang/test/Preprocessor/macro_expandloc.c new file mode 100644 index 0000000..f466013 --- /dev/null +++ b/clang/test/Preprocessor/macro_expandloc.c @@ -0,0 +1,6 @@ +// RUN: %clang_cc1 %s -E 2>&1 | grep '#include' +#define FOO 1 + +// The error message should be on the #include line, not the 1. +#include FOO + |