9 lines
97 B
Kotlin
Vendored
9 lines
97 B
Kotlin
Vendored
package foo
|
|
|
|
val a: Any? = null
|
|
|
|
fun outer() {
|
|
if (a is String) {
|
|
<caret>null
|
|
}
|
|
} |