mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
219 B
Plaintext
17 lines
219 B
Plaintext
public class Y {
|
|
void method() {
|
|
System.out.println(this);
|
|
foo();
|
|
}
|
|
|
|
public void foo() {
|
|
}
|
|
}
|
|
public class X {
|
|
|
|
{
|
|
Y y = new Y();
|
|
y.method();
|
|
new Y().method();
|
|
}
|
|
} |