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 496f8958f62..48a9cd6539a 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 @@ -10826,4 +10826,112 @@ public class AST2TemplateTests extends AST2CPPTestBase { public void testOverloadResolutionWithInitializerList_531322() throws Exception { parseAndCheckBindings(); } + + // using size_t = decltype(sizeof(int)); + // + // template + // using MetaApply = typename Fn::template apply; + // + // template + // struct TypeList { + // using type = TypeList; + // + // template + // using apply = MetaApply; + // }; + // + // struct Empty {}; + // + // namespace impl { + // template + // struct If_ { + // template + // using apply = T; + // }; + // template <> + // struct If_ { + // template + // using apply = U; + // }; + // } + // + // template + // using If = MetaApply, Then, Else>; + // + // template