mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-10 17:57:47 +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;
|
|
}
|