/*#pragma settings RewriteDoWhileLoops*/
void main() {
int i = 0;
do {
++i;
i++;
} while (true);
} while (i < 10);
sk_FragColor = half4(i);
}