mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
19 lines
262 B
Java
19 lines
262 B
Java
public abstract class BaseTest
|
|
{
|
|
private Object f() {
|
|
return null;
|
|
}
|
|
|
|
}
|
|
class S {
|
|
private Object f() {
|
|
new BaseTest() {
|
|
{
|
|
<caret>f();
|
|
}
|
|
};
|
|
|
|
return null;
|
|
}
|
|
}
|