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

8 lines
136 B
Kotlin
Vendored

// WITH_RUNTIME
import java.util.SortedMap
fun test() {
val foo: SortedMap<String, String>? = null
foo?.toSortedMap()<caret>
}