blob: 99cdfdf2f2afbae371c69a4e4b5f893f08002ed8 [file] [log] [blame]
// "Convert '2.' to float" "true"
class Test {
void bar() {
foo(2.f);
}
void foo(float f){}
}