mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 07:11:04 +07:00
6e8742ed2a
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
9 lines
175 B
Java
9 lines
175 B
Java
// "Remove local variable 'n'" "true"
|
|
class C {
|
|
void foo(Object o) {
|
|
if (o instanceof Integer) {
|
|
Integer n<caret>;
|
|
int i = (n = (Integer) o) + 1;
|
|
}
|
|
}
|
|
} |