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

5 lines
105 B
Kotlin
Vendored

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