Files
kotlin-fork/idea/testData/intentions/convertReferenceToLambda/object.kt
T

7 lines
130 B
Kotlin
Vendored

// IS_APPLICABLE: true
// WITH_RUNTIME
val list = listOf(1, 2, 3).map(<caret>Utils::foo)
object Utils {
fun foo(x: Int) = x
}