Files
kotlin/compiler/testData/codegen/boxWithStdlib/callableReference/function/listOfStringsMapLength.kt
2015-05-27 01:44:19 +03:00

3 lines
114 B
Kotlin
Vendored

fun box(): String =
if (listOf("abc", "de", "f").map(String::length) == listOf(3, 2, 1)) "OK" else "Fail"