mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
16 lines
197 B
Java
16 lines
197 B
Java
class MixGetterVal {
|
|
private int x;
|
|
public void m(int z) {
|
|
}
|
|
|
|
public void test() {
|
|
final int y = x;
|
|
m(y);
|
|
}
|
|
|
|
@java.lang.SuppressWarnings("all")
|
|
public int getX() {
|
|
return this.x;
|
|
}
|
|
}
|