Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantCast/afterStringConcatenation.java
2018-09-27 13:57:12 +02:00

7 lines
101 B
Java

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