Files
kotlin-fork/idea/testData/intentions/removeRedundantCallsOfConversionMethods/safeString2.kt
T
2018-06-05 16:03:54 +03:00

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>
}