blob: 42310faf30be8c5f0c214b2e3a7b78f9f46f720d [file] [log] [blame]
// "Convert '1e-9d' to float" "true"
class Test {
void bar() {
foo(1e-9f);
}
void foo(float f){}
}