Test step into for Java constructor with SAM conversion

Additional test for KT-21538

 #KT-21538 Fixed
This commit is contained in:
Nikolay Krasko
2017-12-12 19:32:07 +03:00
parent d6cface66f
commit 6456f4ed98
4 changed files with 33 additions and 0 deletions
@@ -54,4 +54,9 @@ public class MyJavaClass {
public void other(Runnable runnable) {
runnable.run();
}
public MyJavaClass() {}
// Constructor with sam conversion for step into test
public MyJavaClass(Runnable runnable) {}
}