mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
16 lines
208 B
Java
16 lines
208 B
Java
// "Replace with method reference" "false"
|
|
class Test {
|
|
public interface I {
|
|
int m();
|
|
}
|
|
{
|
|
I i = new <caret>I() {
|
|
@Override
|
|
public int m() {
|
|
return m();
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|