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 915727baa93..f64cd23ef1a 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 @@ -5991,7 +5991,6 @@ public class AST2TemplateTests extends AST2TestBase { parseAndCheckBindings(); } - // template struct S { // static int m(); // }; @@ -6652,17 +6651,17 @@ public class AST2TemplateTests extends AST2TestBase { assertSameType(waldo.getType(), CommonCPPTypes.int_); } - //struct A { - // int m(int i) const; - // void m() const; - //}; + // struct A { + // int m(int i) const; + // void m() const; + // }; // - //template struct B { - // typedef int (T::*Method)(int) const; - // B(Method p) {} - //}; + // template struct B { + // typedef int (T::*Method)(int) const; + // B(Method p) {} + // }; // - //B a(&A::m); + // B a(&A::m); public void testConstInTypeParameter_377223() throws Exception { parseAndCheckBindings(); }