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:
Nikolay Krasko
2015-09-02 14:23:03 +03:00
parent 11331e74fd
commit 1132652026
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
View File
@@ -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
}