1#version 450 2 3layout(location =0 ) in int c; 4layout(location =0 ) out int o; 5 6void main() { 7 int i; 8 for (i=0; i < 5; i++) { 9 o = 1; 10 continue; 11 o = 2; 12 } 13 o = 3; 14} 15