12 lines
133 B
Plaintext
12 lines
133 B
Plaintext
float foo(float x) {
|
|
return x * x;
|
|
}
|
|
|
|
void caller() {
|
|
float x = foo(true);
|
|
}
|
|
|
|
/*%%*
|
|
expected 'float', but found 'bool'
|
|
*%%*/
|