mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
261 B
Plaintext
18 lines
261 B
Plaintext
public class Subject {
|
|
private int myInt;
|
|
|
|
public void withClass() {
|
|
myInt += new User.Local().hashCode();
|
|
}
|
|
}
|
|
|
|
class User {
|
|
private void oper() throws IOException {
|
|
Subject subj = new Subject();
|
|
subj.withClass();
|
|
}
|
|
|
|
class Local {
|
|
}
|
|
}
|