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

This commit is contained in:
anna
2012-02-10 12:14:32 +01:00
parent 992515d681
commit cb0442de53
16 changed files with 225 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
// "Convert '1e-9d' to float" "false"
class Test {
void bar() {
foo(1e-9<caret>d);
}
void foo(float f){}
}