mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +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();
|
|
}
|
|
}
|
|
|