1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Reworked pointer-to-member types, bug 264479.

This commit is contained in:
Markus Schorn 2009-02-11 14:30:19 +00:00
parent dfb35058dd
commit c29405a6f8

View file

@ -3766,7 +3766,7 @@ public class AST2TemplateTests extends AST2BaseTest {
// A<C> make_A(C* p) {
// return A<C>(p);
// }
public void _testForwardDeclarations_264109() throws Exception {
public void testForwardDeclarations_264109() throws Exception {
final String code = getAboveComment();
BindingAssertionHelper bh= new BindingAssertionHelper(code, true);
bh.assertNonProblem("A<C> make_A(C* p) {", 4, ICPPTemplateInstance.class);