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