blob: d2d7604e8885d1e00c7519aaadbbdccb05174ea2 [file] [log] [blame]
static int P = 0;
int func(inout int pointer) {
return pointer;
}
[numthreads(1, 1, 1)]
void main() {
int r = func(P);
}