6 lines
77 B
Kotlin
Vendored
6 lines
77 B
Kotlin
Vendored
fun foo() {
|
|
val a: Int? = 1
|
|
if (a != null) {
|
|
<caret>a
|
|
}
|
|
} |