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