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

5 lines
98 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test(list: List<String>) {
val s = list.get(1)!!<caret>
}