Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/smartcasts/controlStructures/elvis.kt
T
Dmitrii Gridin 9a4a3d1f49 [LL FIR] introduce test with reversed resolve order
^KT-56543

Merge-request: KT-MR-9299
Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
2023-03-22 17:34:07 +00:00

19 lines
284 B
Kotlin
Vendored

// IGNORE_REVERSED_RESOLVE
// !DUMP_CFG
interface A {
fun foo()
val b: Boolean
}
fun test_1(x: A?) {
if (x?.b ?: return) {
x.foo()
}
}
fun test2(a: Any?, b: Any?): String {
if (b !is String) return ""
if (a !is String?) return ""
return a ?: b
}