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

6 lines
104 B
Plaintext
Vendored

// WITH_RUNTIME
data class Foo(val name: String)
fun test(foo: Foo?) {
val s: String? = foo?.name
}