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`)
This commit is contained in:
Roman Golyshev
2023-11-09 11:10:13 +01:00
committed by teamcity
parent 47a00bf97e
commit d865a44c94
8 changed files with 277 additions and 0 deletions
@@ -0,0 +1,5 @@
package test
fun usage(list: List<Int>) {
for (<expr>loopVar</expr> in list) {}
}