1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 358654: Added testcase.

This commit is contained in:
Markus Schorn 2011-10-06 10:09:36 +02:00
parent d722e5a8f6
commit c88a6117fd

View file

@ -5529,4 +5529,13 @@ public class AST2TemplateTests extends AST2BaseTest {
public void testReferenceToParameterOfTemplateTemplateParameter_357308() throws Exception {
parseAndCheckBindings();
}
// template <typename...> void f() {}
// void test() {
// f();
// f<>();
// }
public void testInstantiationWithoutParameters_358654() throws Exception {
parseAndCheckBindings();
}
}