Files
kotlin-fork/compiler/testData/diagnostics/tests/overload/SyntheticAndNotSynthetic.kt
T
2013-03-28 20:07:47 +04:00

7 lines
134 B
Kotlin
Vendored

fun Runnable(f: () -> Unit): Runnable = object : Runnable {
public override fun run() {
f()
}
}
val x = Runnable { }