1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Test case for 195246: Formatter problem with sizeof expression

This commit is contained in:
Anton Leherbauer 2007-07-04 13:30:21 +00:00
parent c00f123a5f
commit ad07d96464

View file

@ -133,5 +133,12 @@ public class CodeFormatterTest extends BaseUITestCase {
public void testSpaceBetweenTypeAndIdentifier_Bug194603() throws Exception {
assertFormatterResult();
}
//int a = sizeof( int) ;
//int a = sizeof(int);
public void testSizeofExpression_Bug195246() throws Exception {
assertFormatterResult();
}
}