Update to 142.4245.2: Temprorary modify test data after IDEA update
The problem is in order of cleanup actions. Each action can invalidate psi and that can prevent next action from execution.
This commit is contained in:
+1
-1
@@ -14,7 +14,7 @@ val x = fun foo(x: String) { }
|
||||
fun foo() {
|
||||
@loop
|
||||
for (i in 1..100) {
|
||||
val v = oldFun2(i as Int) as Int
|
||||
val v = oldFun2(i as Int)/* as Int*/
|
||||
/* comment */
|
||||
continue@loop
|
||||
}
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ val x = fun(x: String) { }
|
||||
fun foo() {
|
||||
loop@
|
||||
for (i in 1..100) {
|
||||
val v = bar(i + 2)
|
||||
val v = bar(i + 2)/* as Int*/
|
||||
/* comment */
|
||||
continue@loop
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user