3f7b8554dd
#KT-10121 Fixed
4 lines
111 B
Kotlin
Vendored
4 lines
111 B
Kotlin
Vendored
// !specifyLocalVariableTypeByDefault: true
|
|
fun foo(b: Boolean) {
|
|
val s: String? = if (b) "abc" else null
|
|
} |