Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
()
}