blob: 14f0755ef89a343040956a8053c372ea00e7ce88 [file] [log] [blame]
// implicit cast of int to float in function argument should fail
float foo(float f) {
return f;
}
void main() {
float f = foo(1);
}