Files
ispc/tests_errors/void-2.ispc

6 lines
112 B
Plaintext

// Parameter with type "void" illegal in function parameter list
void func(void x, void y) {
return x+y;
}