1#version 460 core
2in float a[];
3in float c[3];
4out float b[5];
5
6void main(){
7  b[0] = a[1];
8  b[1] = c[1];
9}