And, what do you think we should do with it here i...
# language-proposals
o
And, what do you think we should do with it here in Slack? I suppose we would need a repro anyway, because in simple case it does work:
Copy code
fun x(a: String?) {
    when (a?.length) {
        1 -> a.hashCode() // a is smartcasted
    }
}