mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
anonymous->lambda: forbid for recursive calls (IDEA-90964)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// "Replace with lambda" "false"
|
||||
class Test {
|
||||
public interface I {
|
||||
int m();
|
||||
}
|
||||
{
|
||||
I i = new <caret>I() {
|
||||
@Override
|
||||
public int m() {
|
||||
m();
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user