mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
class Super {
|
|
}
|
|
|
|
class Sub extends Super {
|
|
public void message() {
|
|
// <-- Inline this method call.
|
|
System.out.println(this);
|
|
}
|
|
} |