// WITH_RUNTIME // IS_APPLICABLE: FALSE fun Int.withIndex(): List> = listOf>() fun foo(s: Int) { for ((index, a) in s.withIndex()) { } }