7 lines
130 B
Kotlin
7 lines
130 B
Kotlin
// !specifyLocalVariableTypeByDefault: true
|
|
fun foo(b: Boolean) {
|
|
var s: String? = "abc"
|
|
if (b) {
|
|
s = null
|
|
}
|
|
} |