1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +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

@ -134,4 +134,11 @@ public class CodeFormatterTest extends BaseUITestCase {
assertFormatterResult(); assertFormatterResult();
} }
//int a = sizeof( int) ;
//int a = sizeof(int);
public void testSizeofExpression_Bug195246() throws Exception {
assertFormatterResult();
}
} }