mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
search for functional interface implementations by lambdas and method references: change signature/find usages; to be continued (IDEA-104286; IDEA-90824)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
interface SAM {
|
||||
void <caret>foo();
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
bar(() -> {});
|
||||
}
|
||||
|
||||
void bar(SAM sam){}
|
||||
}
|
||||
Reference in New Issue
Block a user