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