blob: 2cb844ee8e385ff60a551735a7b34c5dabdc946b [file] [log] [blame]
struct S {
int i;
};
[numthreads(1, 1, 1)]
void main() {
S V = {0};
int i = V.i;
return;
}