Convert to anonymous object: fix wrong replacement when SAM is nested interface

#KT-33660 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-10-01 08:14:23 +09:00
committed by Dmitry Gridin
parent 2e3428bbe7
commit 6a329210cb
6 changed files with 43 additions and 2 deletions
@@ -0,0 +1,8 @@
public class J {
public void foo(Sam sam) {
}
public interface Sam {
void bar();
}
}