mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-14 00:01:54 +07:00
19 lines
260 B
Java
19 lines
260 B
Java
public abstract class BaseTest
|
|
{
|
|
private Object f() {
|
|
return null;
|
|
}
|
|
|
|
}
|
|
class S {
|
|
private Object f() {
|
|
new BaseTest() {
|
|
{
|
|
<ref>f();
|
|
}
|
|
};
|
|
|
|
return null;
|
|
}
|
|
}
|