Files
kotlin-fork/j2k/testData/fileOrElement/nullability/VariableComparedWithNull.kt
T
2020-03-19 16:45:10 +01:00

7 lines
131 B
Kotlin
Vendored

// !SPECIFY_LOCAL_VARIABLE_TYPE_BY_DEFAULT: true
fun foo() {
val s: String? = bar()
if (s != null) {
zoo(s)
}
}