11 lines
138 B
Kotlin
Vendored
11 lines
138 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
class Foo {
|
|
fun forEach(): Int = 0
|
|
}
|
|
|
|
fun main() {
|
|
val x = Foo()
|
|
|
|
<caret>x.forEach()
|
|
} |