Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
elvisNothingRHS.fir.kt
blob: b1374cd0426154033f01e4f389762399ce9fa702 [
file
]
class
C
{
fun foo
()
{}
}
fun test
(
a
:
C
?,
nn
:
()
->
Nothing
?)
{
a
?:
nn
()
a
<!
UNSAFE_CALL
!>.<!>
foo
()
a
?:
return
a
.
foo
()
}