4 lines
116 B
Kotlin
Vendored
4 lines
116 B
Kotlin
Vendored
// !SPECIFY_LOCAL_VARIABLE_TYPE_BY_DEFAULT: true
|
|
fun foo(b: Boolean) {
|
|
val s: String? = if (b) "abc" else null
|
|
} |