7 lines
126 B
Kotlin
7 lines
126 B
Kotlin
// !specifyLocalVariableTypeByDefault: true
|
|
fun foo() {
|
|
val s: String? = bar()
|
|
if (s != null) {
|
|
zoo(s)
|
|
}
|
|
} |