Reproduce KT-45475: no smartcast after conditional throw in try expression

This commit is contained in:
Jinseong Jeon
2021-03-15 22:25:13 -07:00
committed by TeamCityServer
parent 1f6f996faf
commit 7e5b562b33
5 changed files with 211 additions and 0 deletions
@@ -0,0 +1,88 @@
// !DIAGNOSTICS: -UNUSED_PARAMETER, -UNUSED_EXPRESSION
fun throwInTry_valueInCatch_smartcastAfterTryCatch() {
val s = try {
throw AssertionError()
} catch(e: Throwable) {
"OK"
}
s.length
}
fun throwInTry_valueInFinally_noSmartcastAfterTryCatchFinally() {
val s = try {
throw AssertionError()
} catch(e: Throwable) {
} finally {
"not enough"
}
s.<!UNRESOLVED_REFERENCE!>length<!>
}
fun throwInTry_valueInCatchAndFinally_smartcastAfterTryCatchFinally() {
val s = try {
throw AssertionError()
} catch(e: Throwable) {
"OK"
} finally {
"really"
}
s.length
}
interface A
interface B : A
fun takeB(b: B) {}
fun conditionalThrowInTry_smartcastInTry(a: A) {
try {
if (a !is B) {
throw AssertionError()
}
takeB(<!DEBUG_INFO_SMARTCAST!>a<!>)
} catch (e: Throwable) {}
}
fun conditionalThrowInTry_noSmartcastAfterTryCatch(a: A) {
try {
if (a !is B) {
throw AssertionError()
}
} catch (e: Throwable) {}
takeB(<!TYPE_MISMATCH!>a<!>)
}
fun conditionalThrowInTry_rethrow_smartcastAfterTryCatch(a: A) {
try {
if (a !is B) {
throw AssertionError()
}
} catch (e: Throwable) {
throw e
}
takeB(<!DEBUG_INFO_SMARTCAST!>a<!>)
}
fun conditionalThrowInTry_rethrow_smartcastAfterTryCatchFinally(a: A) {
try {
if (a !is B) {
throw AssertionError()
}
} catch (e: Throwable) {
throw e
} finally {}
takeB(<!TYPE_MISMATCH!>a<!>)
}
fun conditionalThrowInTry_rethrow_noSmartcastInFinally(a: A) {
try {
if (a !is B) {
throw AssertionError()
}
} catch (e: Throwable) {
throw e
} finally {
takeB(<!TYPE_MISMATCH!>a<!>)
}
}