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