8 lines
136 B
Kotlin
Vendored
8 lines
136 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class C {
|
|
fun foo(): C = this
|
|
fun bar(): C? = this
|
|
}
|
|
|
|
fun test(nc: C?) =
|
|
nc?.foo()?.bar()?.foo()?.foo() |