FIR checker: SENSELESS_(COMPARISON|NULL_IN_WHEN)
Currently DFA does not set "definitely equal to null" for access to variables that got assigned `null`. For example, FIR should mark the following line as SENSELESS_COMPARISON due to `s = null` above. https://github.com/JetBrains/kotlin/blob/d1531f9cdd5852352c0133198706125dc63b6007/compiler/testData/diagnostics/tests/smartCasts/alwaysNull.fir.kt#L6 The problem is at https://github.com/JetBrains/kotlin/blob/7e9f27436a77de1c76e3705da7aa1fbe8938336b/compiler/fir/resolve/src/org/jetbrains/kotlin/fir/resolve/dfa/FirDataFlowAnalyzer.kt#L1104 For null assignment, ideally the type should be `Nothing?`. This is addressed in a followup commit instead.
This commit is contained in:
committed by
teamcityserver
parent
4726dcce40
commit
c7272f6986
@@ -85,8 +85,8 @@ fun foo5(i: MyInterface, a: Any) {
|
||||
}
|
||||
|
||||
fun foo6(e1: E1?, e2: E2) {
|
||||
E1.A == null
|
||||
null == E1.A
|
||||
<!SENSELESS_COMPARISON!>E1.A == null<!>
|
||||
<!SENSELESS_COMPARISON!>null == E1.A<!>
|
||||
e1 == null
|
||||
null == e1
|
||||
|
||||
@@ -95,10 +95,10 @@ fun foo6(e1: E1?, e2: E2) {
|
||||
<!EQUALITY_NOT_APPLICABLE_WARNING!>e1 == e2<!>
|
||||
<!EQUALITY_NOT_APPLICABLE_WARNING!>e2 == e1<!>
|
||||
|
||||
e2 == null
|
||||
null == e2
|
||||
E1.A == null
|
||||
null == E1.A
|
||||
<!SENSELESS_COMPARISON!>e2 == null<!>
|
||||
<!SENSELESS_COMPARISON!>null == e2<!>
|
||||
<!SENSELESS_COMPARISON!>E1.A == null<!>
|
||||
<!SENSELESS_COMPARISON!>null == E1.A<!>
|
||||
}
|
||||
|
||||
fun foo7(e1: E1?, e2: E2?) {
|
||||
|
||||
@@ -85,8 +85,8 @@ fun foo5(i: MyInterface, a: Any) {
|
||||
}
|
||||
|
||||
fun foo6(e1: E1?, e2: E2) {
|
||||
E1.A == null
|
||||
null == E1.A
|
||||
<!SENSELESS_COMPARISON!>E1.A == null<!>
|
||||
<!SENSELESS_COMPARISON!>null == E1.A<!>
|
||||
e1 == null
|
||||
null == e1
|
||||
|
||||
@@ -95,10 +95,10 @@ fun foo6(e1: E1?, e2: E2) {
|
||||
<!INCOMPATIBLE_ENUM_COMPARISON_ERROR!>e1 == e2<!>
|
||||
<!INCOMPATIBLE_ENUM_COMPARISON_ERROR!>e2 == e1<!>
|
||||
|
||||
e2 == null
|
||||
null == e2
|
||||
E1.A == null
|
||||
null == E1.A
|
||||
<!SENSELESS_COMPARISON!>e2 == null<!>
|
||||
<!SENSELESS_COMPARISON!>null == e2<!>
|
||||
<!SENSELESS_COMPARISON!>E1.A == null<!>
|
||||
<!SENSELESS_COMPARISON!>null == E1.A<!>
|
||||
}
|
||||
|
||||
fun foo7(e1: E1?, e2: E2?) {
|
||||
|
||||
Reference in New Issue
Block a user