Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantCast/afterStringConcatenation.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
88 B
Java

// "Remove redundant cast(s)" "true"
class Test {
{
String s = "" + (1 + 2);
}
}