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

Bug 328867 - Override some C++ 0x test cases in LR parser test suite in head stream

This commit is contained in:
Chris Recoskie 2011-03-09 21:42:11 +00:00
parent e5b9283973
commit 35bb3c2833
2 changed files with 11 additions and 2 deletions

View file

@ -90,6 +90,11 @@ public class LRCPPTests extends AST2CPPTests {
public void testBug332114a() throws Exception {}
@Override
public void testResolutionInTrailingReturnType_333256() throws Exception {}
@Override
public void testAutoTypeInRangeBasedFor_332883a() throws Exception {}
@Override
public void testAutoTypeInRangeBasedFor_332883b() throws Exception {}
//DeclType
@Override

View file

@ -92,8 +92,12 @@ public class LRTemplateTests extends AST2TemplateTests {
public void testInlineNamespaces_305980() throws Exception {}
@Override
public void testFunctionParameterPacksInNonFinalPosition_324096() throws Exception {}
//decltype related
@Override
public void testFunctionCallOnDependentName_Bug337686() throws Exception {}
//variadic template
@Override
public void testVariadicFunctionTemplate_Bug333389() throws Exception {}
@Override
@SuppressWarnings("unused")