blob: 52202219bfcc6d7f196124f5d045448a71f8a998 [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
int3 a = int3(1, 2, 3);
int3 b = int3(4, 5, 6);
int3 r = (a * b);
return;
}