Files
kotlin-fork/idea/testData/intentions/addForLoopIndices/inapplicableUnresolved.kt
T
2015-07-21 14:59:08 +03:00

7 lines
104 B
Kotlin
Vendored

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