mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
316 B
Plaintext
18 lines
316 B
Plaintext
public class StaticRefMove {
|
|
public static int init() {
|
|
return 1;
|
|
}
|
|
|
|
public void context() {
|
|
StaticRefMoveSubject v = new StaticRefMoveSubject();
|
|
v.subject();
|
|
}
|
|
}
|
|
|
|
class StaticRefMoveSubject {
|
|
public void subject() {
|
|
int subj = StaticRefMove.init();
|
|
System.out.println(subj);
|
|
}
|
|
}
|