mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
14 lines
169 B
Java
14 lines
169 B
Java
public class Inner1 {
|
|
private int a = 0;
|
|
private class A extends B{
|
|
{
|
|
int j = <ref>a;
|
|
}
|
|
}
|
|
}
|
|
|
|
class B {
|
|
private int a = 0;
|
|
}
|
|
|