IDEA-76599 Quickfix to change a double literal to a float literal

This commit is contained in:
anna
2012-02-10 14:15:09 +01:00
parent 992515d681
commit cb0442de53
16 changed files with 225 additions and 1 deletions
@@ -0,0 +1,7 @@
// "Convert '3.14' to float" "true"
class Test {
void bar() {
foo(3<caret>.14);
}
void foo(float f){}
}