diff --git a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/41.kt b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/41.kt index 5e12c2a1b14..3c16fb00041 100644 --- a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/41.kt +++ b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/41.kt @@ -19,7 +19,7 @@ fun case_1(x: Any) { if (x is Interface1) { if (x is Interface2) { x - x.itest() + x.itest() x.itest1() x.itest2() } diff --git a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/6.kt b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/6.kt index 80737617752..8879ec6da4a 100644 --- a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/6.kt +++ b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/pos/6.kt @@ -1281,7 +1281,7 @@ fun case_71(t: Any?) { t t.itest1() t.itest2() - t.itest() + t.itest() t.let { it.itest1(); it.itest2() } } @@ -1302,7 +1302,7 @@ fun case_72(t: Any?, z1: Nothing?) { t t.itest1() t.itest2() - t.itest() + t.itest() t.let { it.itest1(); it.itest2() } } @@ -1324,7 +1324,7 @@ fun case_73(t: Any?) { if (t != `null`) { t.itest2() t.itest1() - t.itest() + t.itest() t.test1() t.test2() t @@ -1349,7 +1349,7 @@ fun case_74(t: Any?) { if (t is Interface3?) { t.itest2() t.itest1() - t.itest() + t.itest() t.test1() t.test2() t @@ -1372,7 +1372,7 @@ fun case_75(t: Any?, z: Nothing?) { if (t !is Interface2? || t !is Interface3?) {} else { t.itest2() t.itest1() - t.itest() + t.itest() t.test1() t.test2() t