android13/external/skia/resources/sksl/errors/ArgumentMismatch.rts

12 lines
133 B
Plaintext

float foo(float x) {
return x * x;
}
void caller() {
float x = foo(true);
}
/*%%*
expected 'float', but found 'bool'
*%%*/