Files
ispc/tests_errors/void-array-1.ispc

6 lines
88 B
Plaintext

// Arrays of "void" type are illegal
float f_fu(uniform void aFOO[]) {
return 0;
}