mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 15:50:49 +07:00
GitOrigin-RevId: 4fb054b73e9849a80504d65f560f7ce7af88b84c
9 lines
138 B
Java
9 lines
138 B
Java
class Super {
|
|
public String delegate;
|
|
}
|
|
|
|
class Inner extends Super {
|
|
public void b<caret>ar() {
|
|
super.delegate.substring(0);
|
|
}
|
|
} |