Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/safecalls/nullableReceiverWithExclExcl.fir.kt
T

11 lines
189 B
Kotlin
Vendored

class Foo(val bar: String?)
fun test(foo: Foo?) {
foo!!.bar.let {
// Correct
foo.bar?.length
// Unnecessary
foo?.bar?.length
}
foo.bar?.length
}