mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
25 lines
492 B
Java
25 lines
492 B
Java
class DecrementDifferentOuterFieldsDuplicate {
|
|
int x;
|
|
int y;
|
|
|
|
class C {
|
|
private void foo() {
|
|
|
|
newMethod();
|
|
|
|
if (y > 0) {
|
|
bar(y);
|
|
DecrementDifferentOuterFieldsDuplicate.this.y--;
|
|
}
|
|
}
|
|
|
|
private void newMethod() {
|
|
if (x > 0) {
|
|
bar(x);
|
|
DecrementDifferentOuterFieldsDuplicate.this.x--;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void bar(int i) { }
|
|
} |