Files
kotlin/compiler/testData/codegen/boxInline/anonymousObject/safeCall_2.2.kt

11 lines
138 B
Kotlin
Vendored

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