blob: 9bfb97f5953a54dfa1038365185fd680518dc043 [file] [log] [blame]
// IS_APPLICABLE: true
// WITH_RUNTIME
val list = listOf(1, 2, 3).map(<caret>Utils::foo)
object Utils {
fun foo(x: Int) = x
}