blob: 9d3993fd0f271420db4927bbd2232e5f135bab56 [file] [log] [blame]
// "Convert '0.0' to float" "true"
class Test {
void bar() {
foo(0.0f);
}
void foo(float f){}
}