EA-33799 (IOE: PsiJavaParserFacadeImpl.createExpressionFromText)

This commit is contained in:
Bas Leijdekkers
2012-02-18 15:08:14 +01:00
parent 613c8a4798
commit 0d73811b02
3 changed files with 15 additions and 3 deletions
@@ -0,0 +1,7 @@
// "Convert '1e-9d' to float" "true"
class Test {
void bar() {
foo(1e-9f);
}
void foo(float f){}
}
@@ -1,4 +1,4 @@
// "Convert '1e-9d' to float" "false"
// "Convert '1e-9d' to float" "true"
class Test {
void bar() {
foo(1e-9<caret>d);