mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
15 lines
252 B
Plaintext
15 lines
252 B
Plaintext
class Outer {
|
|
class User {
|
|
public class Subject {
|
|
public void withClass() {
|
|
System.out.println(Outer.this.toString());
|
|
}
|
|
}
|
|
|
|
private void oper() {
|
|
Subject subj = new Subject();
|
|
subj.withClass();
|
|
}
|
|
}
|
|
}
|