diff --git a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/36.fir.kt b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/36.fir.kt index 4c0f5355ff5..c30f0e3ba32 100644 --- a/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/36.fir.kt +++ b/compiler/tests-spec/testData/diagnostics/notLinked/dfa/neg/36.fir.kt @@ -9,15 +9,15 @@ */ fun case_1(x: Class?, y: Any) { x?.prop_12 = if (y is String) "" else throw Exception() - y - y.toUpperCase() + y + y.toUpperCase() } // TESTCASE NUMBER: 2 fun case_2(x: Class?, y: Any) { x?.prop_9 = y is String || return - y - y.toUpperCase() + y + y.toUpperCase() } /* @@ -27,8 +27,8 @@ fun case_2(x: Class?, y: Any) { */ fun case_3(x: Class?, y: Any) { x?.prop_12 = y as String - y - y.toUpperCase() + y + y.toUpperCase() } /* @@ -38,8 +38,8 @@ fun case_3(x: Class?, y: Any) { */ fun case_4(x: Class?, y: Any) { x?.prop_12 = y as? String ?: return - y - y.toUpperCase() + y + y.toUpperCase() } /* @@ -49,15 +49,15 @@ fun case_4(x: Class?, y: Any) { */ fun case_5(x: Class?, y: String?) { x?.prop_12 = y ?: return - y - y.toUpperCase() + y + y.toUpperCase() } // TESTCASE NUMBER: 6 fun case_6(x: Class?, y: String?) { x?.prop_9 = y !is String && throw Exception() - y - y.toUpperCase() + y + y.toUpperCase() } /* @@ -67,8 +67,8 @@ fun case_6(x: Class?, y: String?) { */ fun case_7(x: Class?, y: String?) { x?.prop_12 = y!! - y - y.toUpperCase() + y + y.toUpperCase() } /* @@ -78,6 +78,6 @@ fun case_7(x: Class?, y: String?) { */ fun case_8(x: Class?, y: String?) { x?.prop_12 = if (y === null) throw Exception() else "" - y - y.toUpperCase() + y + y.toUpperCase() }