diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2TemplateTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2TemplateTests.java index 6dbee9852cb..77330a48302 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2TemplateTests.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2TemplateTests.java @@ -2326,7 +2326,7 @@ public class AST2TemplateTests extends AST2TestBase { // template void f1(void(*f)(const U&)) {} // void f2(const int& b){} // void test() { - // f1(&f2); // problem on f1 + // f1(&f2); // } public void testSimplifiedFunctionTemplateWithFunctionPointer_281783() throws Exception { parseAndCheckBindings(); @@ -4207,7 +4207,7 @@ public class AST2TemplateTests extends AST2TestBase { // }; // template class Y : X1 { // void test() { - // X x; // problem binding on X + // X x; // } // }; public void testFriendClassTemplate_266992() throws Exception { @@ -7551,7 +7551,7 @@ public class AST2TemplateTests extends AST2TestBase { // // typedef A> D; // - // typedef B::type E; // Problem on B::type + // typedef B::type E; public void testRegression_401743a() throws Exception { parseAndCheckBindings(); } @@ -7573,7 +7573,7 @@ public class AST2TemplateTests extends AST2TestBase { // // typedef A> D; // - // typedef B::type E; // Problem on B::type + // typedef B::type E; public void testRegression_401743b() throws Exception { parseAndCheckBindings(); } @@ -7597,7 +7597,7 @@ public class AST2TemplateTests extends AST2TestBase { // C::pointer p; // p->a = 0; // } - public void testRegression_408314() throws Exception { + public void testPseudoRecursiveTypedef_408314() throws Exception { parseAndCheckBindings(); }