Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeUnusedVariable/afterCastAsSubexpr.java
Tagir Valeev 6e8742ed2a Remove variable -> Remove local variable
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
2020-01-22 05:13:16 +00:00

10 lines
151 B
Java

// "Remove local variable 'c'" "true"
class C {
String s;
void foo(Object o) {
if (o instanceof C) {
String t = ((C) o).s;
}
}
}