blob: 6f076e7e75fbc7f6df090afb80fb9b0be43a86f4 [file] [log] [blame]
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);
}
}