diff options
Diffstat (limited to 'clang/test/Preprocessor/has_include.c')
-rw-r--r-- | clang/test/Preprocessor/has_include.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/Preprocessor/has_include.c b/clang/test/Preprocessor/has_include.c index ad7329390ef..af1f6b8414e 100644 --- a/clang/test/Preprocessor/has_include.c +++ b/clang/test/Preprocessor/has_include.c @@ -93,19 +93,19 @@ // Try as non-preprocessor directives void foo( void ) { - __has_include_next("stdint.h") // expected-warning {{#include_next in primary source file}} expected-error {{__has_include_next must be used within a preprocessing directive}} - __has_include("stdint.h") // expected-error {{__has_include must be used within a preprocessing directive}} + __has_include_next("stdint.h") // expected-warning {{#include_next in primary source file}} expected-error {{'__has_include_next' must be used within a preprocessing directive}} + __has_include("stdint.h") // expected-error {{'__has_include' must be used within a preprocessing directive}} } -MACRO1 // expected-error {{__has_include must be used within a preprocessing directive}} +MACRO1 // expected-error {{'__has_include' must be used within a preprocessing directive}} #if 1 -MACRO1 // expected-error {{__has_include must be used within a preprocessing directive}} +MACRO1 // expected-error {{'__has_include' must be used within a preprocessing directive}} #endif #if 0 #elif 1 -MACRO1 // expected-error {{__has_include must be used within a preprocessing directive}} +MACRO1 // expected-error {{'__has_include' must be used within a preprocessing directive}} #endif #if 0 @@ -148,7 +148,7 @@ MACRO1 // This should be fine because it is never actually reached #if __has_include(stdint.h>) #endif -// expected-error@+1 {{__has_include must be used within a preprocessing directive}} +// expected-error@+1 {{'__has_include' must be used within a preprocessing directive}} __has_include // expected-error@+1 {{missing ')' after '__has_include'}} // expected-error@+1 {{expected value in expression}} // expected-note@+1 {{to match this '('}} |