Files
kotlin-fork/compiler/testData/ir/irText/expressions/chainOfSafeCalls.kt
T
2020-03-23 15:13:50 +03:00

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()