1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Bug 322988: Testcase.

This commit is contained in:
Markus Schorn 2010-08-18 08:42:52 +00:00
parent ace155deba
commit 2d5e046e1c

View file

@ -4137,6 +4137,17 @@ public class AST2TemplateTests extends AST2BaseTest {
final String code= getAboveComment();
parseAndCheckBindings(code);
}
// template <typename T> class CT {
// void init();
// };
// void CT<int>::init(void) {
// }
public void testMethodSpecialization_322988() throws Exception {
final String code= getAboveComment();
parseAndCheckBindings(code, ParserLanguage.CPP);
}
// template <typename T>
// struct A {