Not loading SAM adapters from compiled Kotlin classes.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun foo(/*0*/ r: java.lang.Runnable): jet.Unit
|
||||
|
||||
public trait TaskObject {
|
||||
internal abstract fun foo(/*0*/ r: java.lang.Runnable): jet.Unit
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public trait Runnable {
|
||||
internal abstract fun run(): jet.Unit
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
public trait TaskObject {
|
||||
fun foo(r: Runnable)
|
||||
}
|
||||
|
||||
fun foo(r: Runnable) {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public trait Runnable {
|
||||
fun run()
|
||||
}
|
||||
Reference in New Issue
Block a user