find functional expressions by method type parameter

This commit is contained in:
Anna Kozlova
2014-11-05 19:31:52 +01:00
parent 027d201051
commit 234fdbfc4f
4 changed files with 52 additions and 4 deletions
@@ -0,0 +1,11 @@
interface SA<caret>M {
void foo();
}
class Test {
{
SAM sam = bar(() -> {});
}
<T> T bar(T t){ return t;}
}