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