mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
227 B
Plaintext
16 lines
227 B
Plaintext
class User {
|
|
public class Subject {
|
|
private int myInt;
|
|
|
|
public void withClass() {
|
|
myInt += User.this.hashCode();
|
|
}
|
|
}
|
|
|
|
private void oper() {
|
|
Subject subj = new Subject();
|
|
subj.withClass();
|
|
}
|
|
}
|
|
|