Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantCast/beforeWithStringConcatenation.java
Bas Leijdekkers 9744fab524 Java: better quick-fix name
GitOrigin-RevId: 459b5f435f389fc42b0b1b1ba2b08c458be8bafe
2025-06-24 17:51:53 +00:00

7 lines
116 B
Java

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