mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 02:36:56 +07:00
13 lines
155 B
Java
13 lines
155 B
Java
public class XXX extends Base {
|
|
int x = 5;
|
|
|
|
public void con<caret>text() {
|
|
int a = this.x;
|
|
int b = super.y;
|
|
}
|
|
}
|
|
|
|
class Base {
|
|
int y = 7;
|
|
}
|