9 lines
150 B
Kotlin
Vendored
9 lines
150 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
val list = listOf(1, 2, 3).map(<caret>Utils.Companion::foo)
|
|
|
|
class Utils {
|
|
companion object {
|
|
fun foo(x: Int) = x
|
|
}
|
|
} |