mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-19 10:28:57 +07:00
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
10 lines
151 B
Java
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;
|
|
}
|
|
}
|
|
} |