blob: 6477d65f7e688acae8dbb04aca613fc3d5ce5fba [file] [log] [blame]
// 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
}