}
public void testForInCompoundDoStatement() throws Exception {
TranslationUnit unit = parse("void foo() { do { for(;;); } while(true); }");
FunctionDefinition functionFoo = unit.getChild(0);
LoopStatement doStatement = functionFoo.getChild(0);
assertNotNull(doStatement);
LoopStatement forStatement = doStatement.getChild(0);
assertNotNull(forStatement);
}