blob: c11d451b582f665ccf3990a43b4bc2a3e42faa6e [file] [log] [blame]
float foo(float x) {
return x * x;
}
void caller() {
float x = foo(true);
}
/*%%*
expected 'float', but found 'bool'
*%%*/