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