diff options
Diffstat (limited to 'clang/test/Preprocessor/undef-error.c')
-rw-r--r-- | clang/test/Preprocessor/undef-error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Preprocessor/undef-error.c b/clang/test/Preprocessor/undef-error.c index af9f516f11c..a2769345bab 100644 --- a/clang/test/Preprocessor/undef-error.c +++ b/clang/test/Preprocessor/undef-error.c @@ -1,5 +1,5 @@ -// RUN: not clang %s -pedantic-errors -E +// RUN: clang %s -pedantic-errors -verify // PR2045 #define b -#undef a b +/* expected-error {{extra tokens at end of #undef directive}} */ #undef a b |