1#version 460 core
2
3in float g[][3];
4out float o[];
5
6void f(){
7  o[1] = g[1][1];
8}