mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 370f0584ecdc2e6229db59d3493b6faba1a04e1d
7 lines
118 B
Java
7 lines
118 B
Java
class Outer {
|
|
private int value = 0;
|
|
|
|
public class Inner {
|
|
private final int myValue = Outer.this.value;
|
|
}
|
|
} |