mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-11 08:36:57 +07:00
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;
|
|
}
|
|
}
|
|
} |