Files
kotlin-fork/idea/testData/inspectionsLocal/mapGetWithNotNullAssertionOperator/indexedAccess.kt
T

4 lines
79 B
Kotlin
Vendored

// WITH_RUNTIME
fun test(map: Map<Int, String>) {
val s = map[1]<caret>!!
}