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

13 lines
196 B
Kotlin
Vendored

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