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

7 lines
109 B
Java

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