blob: d88b936416da6a6ec04f426d75f54f8c03e24359 [file] [log] [blame]
void func(int value, inout int pointer) {
pointer = value;
}
[numthreads(1, 1, 1)]
void main() {
int i = 123;
func(123, i);
return;
}