Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/getOrPutAmbiguity.kt
T
2020-09-11 12:13:33 +03:00

6 lines
107 B
Kotlin
Vendored

// !FULL_JDK
fun test(map: MutableMap<Int, MutableMap<Int, Int>>) {
map.getOrPut(1, ::mutableMapOf)
}