ref: 5918a7742bbad4a34ece6c034020c7bc562e0f1f dir: /tests/execute/0008-dowhilestmt.c/
int main() { int x; x = 50; do x = x - 1; while(x); return x; }