9 lines
119 B
Kotlin
Vendored
9 lines
119 B
Kotlin
Vendored
class C {
|
|
val a: Any? = null
|
|
|
|
fun test() {
|
|
if (a is String) {
|
|
<caret>null
|
|
}
|
|
}
|
|
} |