Files
ispc/tests_errors/float-logical-1.ispc

6 lines
118 B
Plaintext

// First operand to binary operator "&" must be an integer or bool
float foo(float a, float b) {
return a & b;
}