8969e7a6e1
So #KT-24557 Fixed
6 lines
123 B
Kotlin
Vendored
6 lines
123 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
data class Foo(val name: String)
|
|
|
|
fun test(foo: Foo?) {
|
|
val s: String? = foo?.name?.toString()<caret>
|
|
} |