7 lines
129 B
Plaintext
Vendored
7 lines
129 B
Plaintext
Vendored
// IS_APPLICABLE: true
|
|
// WITH_RUNTIME
|
|
val list = listOf(1, 2, 3).map { Utils.foo(it) }
|
|
|
|
object Utils {
|
|
fun foo(x: Int) = x
|
|
} |