1void main() {
2    float sum = 0.0;
3    do {
4	sum += 0.1;
5	break;
6    } while (true);
7    gl_FragColor = vec4(sum);
8}
9