Files
kotlin-fork/idea/testData/intentions/addForLoopIndicesIntention/inapplicableSyntaxError.kt
T

7 lines
102 B
Kotlin
Vendored

//IS_APPLICABLE: FALSE
//ERROR: Unresolved reference: b
fun foo() {
for (a <caret>in b) {
}
}