blob: f282b82855841f7e28657a97e41b39ba52c490ad [file] [log] [blame]
groupshared int i;
[numthreads(1, 1, 1)]
void main() {
i = 123;
const int use = (i + 1);
return;
}