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