Files
kotlin/compiler/testData/codegen/boxInline/simple/safeCall.2.kt

9 lines
108 B
Kotlin
Vendored

package test
class W(val value: Any)
inline fun W.safe(body : Any.() -> Unit) {
this.value?.body()
}