blob: 9541ec5647fe31df57cff31e3faf29deefeca3ca [file] [log] [blame]
// "Convert '3.14' to float" "true"
class Test {
void bar() {
foo(3<caret>.14);
}
void foo(float f){}
}