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