mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 04:45:20 +07:00
16 lines
157 B
Java
16 lines
157 B
Java
class B {
|
|
public int getI() {
|
|
|
|
return 0;
|
|
}
|
|
|
|
static class A {
|
|
|
|
private int i = 0;
|
|
|
|
/**
|
|
* {@link B#getI()}
|
|
*/
|
|
void f() {}
|
|
}
|
|
} |