Files
kotlin-fork/compiler/testData/ir/interpreter/collections/mutableMapOf.kt
T
2021-06-07 15:35:12 +03:00

7 lines
234 B
Kotlin
Vendored

import kotlin.*
import kotlin.collections.*
const val a1 = mutableMapOf(1 to "1", 2 to "2", 3 to "3").<!EVALUATED: `3`!>size<!>
const val a2 = mutableMapOf(1 to "1", 2 to "2", 3 to "3").apply { remove(1) }.<!EVALUATED: `2`!>size<!>