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