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

7 lines
150 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
data class Foo(val name: String)
fun nullable2(foo: Foo?) {
val s: String = foo?.name.toString()<caret>
}