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