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