mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
21 lines
325 B
Java
21 lines
325 B
Java
public class Subject {
|
|
private int myInt;
|
|
|
|
public void withClass(Object <caret>o) {
|
|
myInt += o.hashCode();
|
|
}
|
|
|
|
class User {
|
|
private void oper() throws IOException {
|
|
Subject subj = new Subject();
|
|
|
|
subj.withClass(new Local());
|
|
}
|
|
|
|
|
|
}
|
|
|
|
class Local {
|
|
}
|
|
|
|
} |