656c2496a6
and remove a hack intended to replace the missing type conversions this caused. #KT-46505 Fixed
6 lines
142 B
Kotlin
Vendored
6 lines
142 B
Kotlin
Vendored
inline class Value(val value: Any)
|
|
|
|
fun foo(value: Value?) = value?.value as String?
|
|
|
|
fun box(): String = (null as Value?).let(::foo) ?: "OK"
|