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

5 lines
98 B
Kotlin
Vendored

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