mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
15 lines
176 B
Java
15 lines
176 B
Java
class Test {
|
|
class A {
|
|
private Integer i = 0;
|
|
|
|
void foo() {
|
|
i.toString();
|
|
}
|
|
}
|
|
|
|
class B extends A {
|
|
void bar(A a) {
|
|
a.fo<caret>o();
|
|
}
|
|
}
|
|
} |