mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
296 B
Java
17 lines
296 B
Java
public class StaticRefMove {
|
|
public static int init() {
|
|
return 1;
|
|
}
|
|
|
|
public void context() {
|
|
StaticRefMoveSubject v = new StaticRefMoveSubject();
|
|
v.subject(init());
|
|
}
|
|
}
|
|
|
|
class StaticRefMoveSubject {
|
|
public void subject(int <caret>subj) {
|
|
System.out.println(subj);
|
|
}
|
|
}
|