Files
kotlin-fork/analysis/low-level-api-fir/testData/contextCollector/forLoopVariable.kt
T
Roman Golyshev d865a44c94 KT-61890 [AA] Add test for ContextCollector at loop variable position
This turns out to be important for conflict resolution in
postfix completion in K2 IDE (see `KotlinDeclarationNameValidator`)
2023-11-14 22:15:05 +00:00

5 lines
86 B
Kotlin
Vendored

package test
fun usage(list: List<Int>) {
for (<expr>loopVar</expr> in list) {}
}