blob: 2493fcb1cf40e0297c20939f84b25cdb902a2d63 [file] [log] [blame]
struct S {
int a;
float b;
};
[numthreads(1, 1, 1)]
void main() {
S v = {0, 0.0f};
v;
return;
}