diff --git a/idea/testData/inspections/cleanup/cleanup.kt b/idea/testData/inspections/cleanup/cleanup.kt index 14f3431b8d5..1c058f4c013 100644 --- a/idea/testData/inspections/cleanup/cleanup.kt +++ b/idea/testData/inspections/cleanup/cleanup.kt @@ -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 } diff --git a/idea/testData/inspections/cleanup/cleanup.kt.after b/idea/testData/inspections/cleanup/cleanup.kt.after index dcf8a1e1d5c..23d2a72b80d 100644 --- a/idea/testData/inspections/cleanup/cleanup.kt.after +++ b/idea/testData/inspections/cleanup/cleanup.kt.after @@ -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 }