Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantCast/beforeFloatingPoint.java
Anna.Kozlova e3f42bdb9b extract PsiPrecedenceUtil as read-only part of ParenthesisUtils
leave methods to ensure compatibility, to be inlined and deprecated in separate commit (IDEA-CR-30329)
2018-03-09 16:38:07 +01:00

6 lines
109 B
Java

// "Remove redundant cast(s)" "true"
class Test {
{
double d = -1e20 + (do<caret>uble)(1e20 - 1);
}
}