8 lines
151 B
Kotlin
Vendored
8 lines
151 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun Runnable(f: () -> Unit): Runnable = object : Runnable {
|
|
public override fun run() {
|
|
f()
|
|
}
|
|
}
|
|
|
|
val x = Runnable { } |