1struct A {
2    float a[];
3};
4
5RWStructuredBuffer <A> B;
6
7float main() {
8    return B[0].a[0];
9}
10