9 lines
124 B
Kotlin
Vendored
9 lines
124 B
Kotlin
Vendored
fun main() {
|
|
"".run {
|
|
<!UNUSED_LAMBDA_EXPRESSION!>{}<!>
|
|
}
|
|
}
|
|
|
|
|
|
fun <T> T.run(f: (T) -> Unit): Unit = f(this)
|