suggest correctly shaped functional types if extracting functional expression without context: initial (IDEA-125510)

This commit is contained in:
Anna Kozlova
2014-11-03 15:08:48 +01:00
parent bb77beee3f
commit e887542c3e
11 changed files with 152 additions and 2 deletions
@@ -0,0 +1,6 @@
class Foo {
void test() {
Runnable l = () -> {
};
}
}