6735cc8937
#KT-36055 Fixed
10 lines
191 B
Kotlin
Vendored
10 lines
191 B
Kotlin
Vendored
// !LANGUAGE: +SoundSmartCastsAfterTry
|
|
|
|
fun foo() {
|
|
var s: String?
|
|
s = "Test"
|
|
try {
|
|
s = null
|
|
} catch (ex: Exception) {}
|
|
s.<!INAPPLICABLE_CANDIDATE!>hashCode<!>()
|
|
} |