c7272f6986
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.
46 lines
810 B
Kotlin
Vendored
46 lines
810 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_EXPRESSION,-UNUSED_VARIABLE
|
|
|
|
fun <T : CharSequence?> T.bar1() {}
|
|
fun CharSequence?.bar2() {}
|
|
|
|
fun <T : CharSequence> T.bar3() {}
|
|
fun CharSequence.bar4() {}
|
|
|
|
fun <T : CharSequence?> foo(x: T) {
|
|
|
|
if (x != null) {
|
|
if (<!SENSELESS_COMPARISON!>x != null<!>) {}
|
|
|
|
x.length
|
|
x<!UNNECESSARY_SAFE_CALL!>?.<!>length
|
|
|
|
x.bar1()
|
|
x.bar2()
|
|
x.bar3()
|
|
x.bar4()
|
|
|
|
|
|
x<!UNNECESSARY_SAFE_CALL!>?.<!>bar1()
|
|
}
|
|
|
|
x<!UNSAFE_CALL!>.<!>length
|
|
|
|
if (x is String) {
|
|
x.length
|
|
x<!UNNECESSARY_SAFE_CALL!>?.<!>length
|
|
|
|
x.bar1()
|
|
x.bar2()
|
|
x.bar3()
|
|
}
|
|
|
|
if (x is CharSequence) {
|
|
x.length
|
|
x<!UNNECESSARY_SAFE_CALL!>?.<!>length
|
|
|
|
x.bar1()
|
|
x.bar2()
|
|
x.bar3()
|
|
}
|
|
}
|