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