10 lines
189 B
Kotlin
Vendored
10 lines
189 B
Kotlin
Vendored
// !LANGUAGE: -SoundSmartCastsAfterTry
|
|
|
|
fun foo() {
|
|
var s: String?
|
|
s = "Test"
|
|
try {
|
|
s = null
|
|
} catch (ex: Exception) {}
|
|
<!DEBUG_INFO_SMARTCAST!>s<!>.hashCode()
|
|
} |