mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
12 lines
152 B
Java
12 lines
152 B
Java
class A {
|
|
private final int aField = 1;
|
|
|
|
class B {
|
|
|
|
int method() {
|
|
int <selection>i</selection> = 2;
|
|
return aField + i;
|
|
}
|
|
}
|
|
}
|