diff options
Diffstat (limited to 'clang/unittests/AST/DeclPrinterTest.cpp')
-rw-r--r-- | clang/unittests/AST/DeclPrinterTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/unittests/AST/DeclPrinterTest.cpp b/clang/unittests/AST/DeclPrinterTest.cpp index 332018e384a..c99550af226 100644 --- a/clang/unittests/AST/DeclPrinterTest.cpp +++ b/clang/unittests/AST/DeclPrinterTest.cpp @@ -510,6 +510,7 @@ TEST(DeclPrinter, TestCXXConstructorDecl10) { // WRONG; Should be: "A(const A &a);" } +#if !defined(_MSC_VER) TEST(DeclPrinter, TestCXXConstructorDecl11) { ASSERT_TRUE(PrintedDeclCXX11Matches( "template<typename... T>" @@ -520,7 +521,7 @@ TEST(DeclPrinter, TestCXXConstructorDecl11) { "A<T...>(T &&ts...) : T(ts)")); // WRONG; Should be: "A(T&&... ts) : T(ts)..." } - +#endif TEST(DeclPrinter, TestCXXDestructorDecl1) { ASSERT_TRUE(PrintedDeclMatches( |