1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Moved testU8TokenAfterIfdef_429361 to AST2Tests

This commit is contained in:
Sergey Prigogin 2014-04-18 12:24:27 -07:00
parent 79dc0b8184
commit 103f577926
2 changed files with 10 additions and 10 deletions

View file

@ -10568,13 +10568,4 @@ public class AST2CPPTests extends AST2TestBase {
public void testParenthesizedReferenceArgument_424898() throws Exception {
parseAndCheckBindings();
}
// typedef unsigned char u8;
//
// #ifndef X
// u8 var;
// #endif
public void testU8TokenAfterIfdef_429361() throws Exception {
parseAndCheckBindings();
}
}

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2004, 2013 IBM Corporation and others.
* Copyright (c) 2004, 2014 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -7539,4 +7539,13 @@ public class AST2Tests extends AST2TestBase {
// 7 characters for "foobar" + the null terminator.
assertEquals(7, f.getTemplateArguments()[0].getNonTypeValue().numericalValue().longValue());
}
// typedef unsigned char u8;
//
// #ifndef X
// u8 var;
// #endif
public void testU8TokenAfterIfdef_429361() throws Exception {
parseAndCheckBindings();
}
}