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