Files
kotlin-fork/idea/testData/intentions/removeRedundantCallsOfConversionMethods/nullable.kt
T

5 lines
103 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
fun foo(s: String?) {
val t: String = s.toString()<caret>
}