a12877e51c
So #KT-14486 Fixed
16 lines
268 B
Kotlin
Vendored
16 lines
268 B
Kotlin
Vendored
// !LANGUAGE: -CapturedInClosureSmartCasts
|
|
|
|
fun run(f: () -> Unit) = f()
|
|
|
|
fun foo(s: String?) {
|
|
var x: String? = null
|
|
if (s != null) {
|
|
x = s
|
|
}
|
|
if (x != null) {
|
|
run {
|
|
<!SMARTCAST_IMPOSSIBLE!>x<!>.hashCode()
|
|
}
|
|
}
|
|
}
|