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

4 lines
83 B
Kotlin
Vendored

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