blob: bd75926b382ce9f8ec8d92c3cab69cbe73c11c2b [file] [log] [blame]
struct S {
int m;
float4x4 n;
};
float f() {
S a = (S)0;
return a.n[int(2)][int(1)];
}
[numthreads(1, 1, 1)]
void unused_entry_point() {
}