diff options
Diffstat (limited to 'clang/unittests/AST/DeclPrinterTest.cpp')
-rw-r--r-- | clang/unittests/AST/DeclPrinterTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/AST/DeclPrinterTest.cpp b/clang/unittests/AST/DeclPrinterTest.cpp index 381536d9cd6..c604fb1e7e3 100644 --- a/clang/unittests/AST/DeclPrinterTest.cpp +++ b/clang/unittests/AST/DeclPrinterTest.cpp @@ -519,6 +519,7 @@ TEST(DeclPrinter, TestCXXConstructorDecl11) { "};", constructorDecl(ofClass(hasName("A"))).bind("id"), "A<T...>(T &&ts...) : T(ts)...")); + // WRONG; Should be: "A(T&&... ts) : T(ts)..." } TEST(DeclPrinter, TestCXXDestructorDecl1) { |