mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 3aae5c738d48c38144f6a78c36738121831ae5a5
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) { }
|
|
} |