Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
inlineEvaluationOrder
/
methodDecomposedWithBind.kt
blob: 031a1c316fad4f847dd03706cd82a45f317eccaf [
file
]
// KJS_WITH_FULL_RUNTIME
package
foo
import
kotlin
.
test
.*
fun box
():
String
{
val v
=
mapOf
(
1
to
"1"
,
2
to
"2"
).
mapValues
{
it
.
value
.
map
{
it
.
toString
()
}
}
assertEquals
(
2
,
v
.
size
)
return
"OK"
}