Files
kotlin-fork/idea/testData/intentions/convertForEachToForLoop/zeroArguments.kt
T
2015-04-16 22:00:54 +03:00

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()
}