Files
kotlin-fork/idea/testData/intentions/convertFunctionToProperty/iterator.kt
T
2015-02-05 23:12:38 +03:00

11 lines
172 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
class A(val n: Int) {
fun <caret>iterator(): Iterator<Int> = throw Exception("")
}
fun test() {
for (a in A(10)) {
}
}