3da463be27
#KT-10137 Fixed
11 lines
138 B
Kotlin
Vendored
11 lines
138 B
Kotlin
Vendored
package test
|
|
|
|
class W(val value: Any)
|
|
|
|
inline fun W.safe(crossinline body : Any.() -> Unit) {
|
|
{
|
|
this.value?.body()
|
|
}()
|
|
}
|
|
|