blob: aec3d396fd043cdcaa45728b6c63809b5d0fd86f [file] [log] [blame]
[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
struct T {
float o;
uint p;
};
struct S {
int m;
T n;
};
uint f() {
const S a = (S)0;
return a.n.p;
}