Convert to anonymous function: do not name argument when lambda is Java method

#KT-30613 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-04-08 13:07:07 +09:00
committed by Mikhail Glukhikh
parent 033d7262a2
commit 93d854362b
10 changed files with 53 additions and 1 deletions
@@ -0,0 +1,7 @@
public class Test {
void foo(Sam s) {}
}
interface Sam {
void foo(int x);
}