diff options
Diffstat (limited to 'clang/test/SemaCXX/attr-common.cpp')
-rw-r--r-- | clang/test/SemaCXX/attr-common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/attr-common.cpp b/clang/test/SemaCXX/attr-common.cpp index 58b30133f52..fb98639d1b2 100644 --- a/clang/test/SemaCXX/attr-common.cpp +++ b/clang/test/SemaCXX/attr-common.cpp @@ -1,3 +1,3 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s -__attribute__((common)) int x; // expected-error {{common attribute is not supported in C++}} +__attribute__((common)) int x; // expected-error {{'common' attribute is not supported in C++}} |