Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/varnotnull/unnecessary.fir.kt
T

12 lines
179 B
Kotlin
Vendored

fun String?.foo(): String {
return this ?: ""
}
class MyClass {
private var s: String? = null
fun bar(): String {
s = "42"
return s.foo()
}
}