1#version 450
2layout(location=0) out highp int r;
3void main() {
4  int i;
5  for (i=0; i<10; i++);
6  r = i;
7}
8