Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
elvisOnUnitInLet.kt
blob: e8fa491c355bb9feb7f16ee8c75047140db94560 [
file
]
// FIR_IDENTICAL
fun foo
(
x
:
Int
?)
{
// Both parts of the Elvis should be alive, see KT-7936
x
?.
let
{
smth
()
}?:
orElse
()
}
fun smth
()
{}
fun orElse
()
{}