diff options
Diffstat (limited to 'clang/test/SemaCXX/MicrosoftCompatibility.cpp')
| -rw-r--r-- | clang/test/SemaCXX/MicrosoftCompatibility.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/clang/test/SemaCXX/MicrosoftCompatibility.cpp b/clang/test/SemaCXX/MicrosoftCompatibility.cpp index 56486b8f049..480c7cbdcac 100644 --- a/clang/test/SemaCXX/MicrosoftCompatibility.cpp +++ b/clang/test/SemaCXX/MicrosoftCompatibility.cpp @@ -1,9 +1,15 @@ -// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -std=c++11 -Wmicrosoft -verify -fms-compatibility -fexceptions -fcxx-exceptions - - +// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -std=c++11 -Wmicrosoft -verify -fms-compatibility -fexceptions -fcxx-exceptions -fms-compatibility-version=19.00 +// RUN: %clang_cc1 %s -triple i686-pc-win32 -fsyntax-only -std=c++11 -Wmicrosoft -verify -fms-compatibility -fexceptions -fcxx-exceptions -fms-compatibility-version=18.00 + +#if _MSC_VER >= 1900 +char16_t x; +char32_t y; +_Atomic(int) z; +#else typedef unsigned short char16_t; typedef unsigned int char32_t; struct _Atomic {}; +#endif typename decltype(3) a; // expected-warning {{expected a qualified name after 'typename'}} |

