Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
regression
/
kt37706.kt
blob: 6477d65f7e688acae8dbb04aca613fc3d5ce5fba [
file
]
// 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
}