Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/regression/kt37706.kt
T
2020-09-11 12:13:33 +03:00

6 lines
187 B
Kotlin
Vendored

// FIR_IDENTICAL
fun test(): Int {
val sets = (1..100).associateWith { (it..10 * it).mapTo(java.util.TreeSet()) { i -> i } }
val set = sets[50] ?: emptySet()
return set.size
}