Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/contracts/smartcasts/throwsEffect.fir.kt
T
Tianyu Geng c7272f6986 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.
2021-08-06 22:57:16 +03:00

67 lines
1.3 KiB
Kotlin
Vendored

// !LANGUAGE: +AllowContractsForCustomFunctions +UseReturnsEffect
// !USE_EXPERIMENTAL: kotlin.contracts.ExperimentalContracts
// !DIAGNOSTICS: -INVISIBLE_REFERENCE -INVISIBLE_MEMBER
import kotlin.contracts.*
fun myAssert(condition: Boolean) {
contract {
returns() implies (condition)
}
if (!condition) throw kotlin.IllegalArgumentException("Assertion failed")
}
fun testAssertSmartcast(x: Any?) {
myAssert(x is String)
x.length
}
fun testInvertedAssert(x: Any?) {
myAssert(x !is String)
x.<!UNRESOLVED_REFERENCE!>length<!>
}
fun testSpilling(x: Any?) {
if (x != null) {
myAssert(x is String)
x.length
}
x<!UNSAFE_CALL!>.<!>length
}
fun testAssertInIf(x: Any?) {
if (myAssert(x is String) == Unit) {
x.length
}
else {
x.length
}
}
fun testTryCatch(x: Any?) {
try {
myAssert(x is String)
x.length
} catch (e: kotlin.IllegalArgumentException) {
}
x.<!UNRESOLVED_REFERENCE!>length<!>
}
fun testUncertainFlow(x: Any?) {
repeat(x.toString().length) {
myAssert(x is String)
x.length
}
x.<!UNRESOLVED_REFERENCE!>length<!>
}
fun testAtLeastOnceFlow(x: Any?) {
do {
myAssert(x is String)
x.length
} while (<!SENSELESS_COMPARISON!>x != null<!>)
x.length
}