10 lines
120 B
Kotlin
Vendored
10 lines
120 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
package test
|
|
|
|
public interface TaskObject {
|
|
fun foo(r: Runnable)
|
|
}
|
|
|
|
fun foo(r: Runnable) {
|
|
}
|