Files
kotlin-fork/compiler/testData/ir/interpreter/collections/mutableMapOf.kt
T
2022-03-30 08:35:21 +00:00

7 lines
234 B
Kotlin
Vendored

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