diff options
-rw-r--r-- | unittests/AST/DeclPrinterTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/AST/DeclPrinterTest.cpp b/unittests/AST/DeclPrinterTest.cpp index b26ed93ddf..43cc48da82 100644 --- a/unittests/AST/DeclPrinterTest.cpp +++ b/unittests/AST/DeclPrinterTest.cpp @@ -517,7 +517,7 @@ TEST(DeclPrinter, TestCXXConstructorDecl11) { "};", constructor(ofClass(hasName("A"))).bind("id"), "A<T...>(T &&ts...) : T(ts)")); - // Should be: "A(T&&... ts) : T(ts)..." + // WRONG; Should be: "A(T&&... ts) : T(ts)..." } |