mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
17 lines
209 B
Java
17 lines
209 B
Java
// "Replace with lambda" "false"
|
|
class Test {
|
|
public interface I {
|
|
int m();
|
|
}
|
|
{
|
|
I i = new <caret>I() {
|
|
@Override
|
|
public int m() {
|
|
m();
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|