Files
kotlin-fork/compiler/testData/cli/jvm/legacySmartCastsAfterTry.kt
T

9 lines
144 B
Kotlin
Vendored

fun foo() {
var some: String? = null
some = "alpha"
try {
some = "omega"
}
catch (e: Exception) {}
some.length
}