blob: 150bd12f3c600a27c91ca1bc138ff976f0910138 [file] [log] [blame]
// "Convert '1e1' to float" "true"
class Test {
void bar() {
foo(1e1f);
}
void foo(float f){}
}