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