mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
find functional expressions by method type parameter
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
interface SA<caret>M {
|
||||
void foo();
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
SAM sam = bar(() -> {});
|
||||
}
|
||||
|
||||
<T> T bar(T t){ return t;}
|
||||
}
|
||||
Reference in New Issue
Block a user