mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
9 lines
174 B
Kotlin
Vendored
9 lines
174 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
fun <T> T.runExt(fn: T.() -> String) = fn()
|
|
|
|
inline class R(private val r: String) {
|
|
fun test() = runExt { r }
|
|
}
|
|
|
|
fun box() = R("OK").test() |