blob: 41f58363332ba7124c043d80c29be4cf143e2ab1 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
const int3 a = int3(1, 2, 3);
const int3 b = int3(0, 5, 0);
const int3 r = (int3(1, 2, 3) % int3(1, 5, 1));
return;
}