Test with SAM adapter for method inherited/overriding other from Kotlin.

This commit is contained in:
Evgeny Gerashchenko
2013-06-22 18:46:25 +04:00
parent 525af972d3
commit 2cb4c7edbb
7 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package test;
public class Sub extends Super {
public void foo(Runnable r) {
}
}