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