1#version 450
2
3layout(location =0 ) in int c;
4layout(location =0 ) out int o;
5
6void main() {
7  o = 1;
8  return;
9  o = 3;
10}
11