5 lines
69 B
Kotlin
5 lines
69 B
Kotlin
fun outer(a: Any?) {
|
|
if (a != null) {
|
|
<caret>null
|
|
}
|
|
} |