This commit is contained in:
Anna Kozlova
2014-11-13 12:20:32 +01:00
parent 350c0b2a0a
commit 6261633a4d
2 changed files with 26 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
// "Replace lambda with method reference" "false"
class Example {
public void m(String ss, String... s) {
}
{
Runnable r = () -> <caret>m("", "");
}
}