diff --git a/idea/testData/inspections/cleanup/cleanup.kt b/idea/testData/inspections/cleanup/cleanup.kt index ec07a892d37..be2521e970b 100644 --- a/idea/testData/inspections/cleanup/cleanup.kt +++ b/idea/testData/inspections/cleanup/cleanup.kt @@ -75,7 +75,7 @@ fun yield(yield: Int) { val foo = yield + yield val foo2 = yield - bar(yield = 5) + // bar(yield = 5) //this is different in old and new inference, should be tested in compiler yield(4) yield {} diff --git a/idea/testData/inspections/cleanup/cleanup.kt.after b/idea/testData/inspections/cleanup/cleanup.kt.after index 182c9ab34ed..293e00d7a58 100644 --- a/idea/testData/inspections/cleanup/cleanup.kt.after +++ b/idea/testData/inspections/cleanup/cleanup.kt.after @@ -74,7 +74,7 @@ fun yield(yield: Int) { val foo = `yield` + `yield` val foo2 = `yield` - bar(`yield` = 5) + // bar(yield = 5) //this is different in old and new inference, should be tested in compiler yield(4) yield() {}