13 lines
335 B
Kotlin
Vendored
13 lines
335 B
Kotlin
Vendored
// See KT-10056
|
|
class Foo(val bar: String)
|
|
|
|
fun test(foo: Foo?) {
|
|
foo?.bar.let {
|
|
// Error, foo?.bar is nullable
|
|
it.<!INAPPLICABLE_CANDIDATE!>length<!>
|
|
// Error, foo is nullable
|
|
foo.<!INAPPLICABLE_CANDIDATE!>bar<!>.<!UNRESOLVED_REFERENCE!>length<!>
|
|
// Correct
|
|
foo?.bar?.length
|
|
}
|
|
} |