blob: e65e35eb21f864ef2c93976c8323f3315164e9b8 [file] [log] [blame]
class C {
val a: Any? = null
fun test() {
if (a is String) {
<caret>null
}
}
}