diff options
Diffstat (limited to 'test/Preprocessor/annotate_in_macro_arg.c')
-rw-r--r-- | test/Preprocessor/annotate_in_macro_arg.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Preprocessor/annotate_in_macro_arg.c b/test/Preprocessor/annotate_in_macro_arg.c new file mode 100644 index 0000000..f4aa7d1 --- /dev/null +++ b/test/Preprocessor/annotate_in_macro_arg.c @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 -verify %s +#define M1() // expected-note{{macro 'M1' defined here}} + +M1( // expected-error{{unterminated function-like macro invocation}} + +#if M1() // expected-error{{expected value in expression}} +#endif +#pragma pack() |