Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
expressions
/
chainOfSafeCalls.kt
blob: 9ae44ac8c1bd4d1aa0ef974054e33dd67b64cec3 [
file
]
// FIR_IDENTICAL
class
C
{
fun foo
():
C
=
this
fun bar
():
C
?
=
this
}
fun test
(
nc
:
C
?)
=
nc
?.
foo
()?.
bar
()?.
foo
()?.
foo
()