PSI2IR KT-47245 handle declaration statements in control structures

This commit is contained in:
Dmitry Petrov
2021-06-11 13:24:35 +03:00
committed by TeamCityServer
parent 3be348f910
commit bf077b893c
15 changed files with 120 additions and 2 deletions
@@ -0,0 +1,6 @@
// IGNORE_BACKEND: JVM
fun box(): String {
for (i in 0..0) fun x() {}
return "OK"
}