Files
kotlin-fork/idea/testData/intentions/removeRedundantCallsOfConversionMethods/safeString.kt
T
2016-10-17 12:05:18 +03:00

6 lines
86 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
val foo: String? = null
foo?.toString()<caret>
}