Files
kotlin/compiler/testData/codegen/boxWithStdlib/callableReference/function/listOfStringsMapLength.kt
2015-10-14 20:39:35 +03:00

3 lines
121 B
Kotlin
Vendored

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