blob: 92cb59d6872eb899dc3b44773d1b9ecad529594e [file] [log] [blame]
// "Convert '0.0' to float" "true"
class Test {
void bar() {
foo(0<caret>.0);
}
void foo(float f){}
}