Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
ir
/
irText
/
firProblems
/
emptyWhen.kt
blob: 9a90e215ab75895597c13adb0ab6da2880e7ecae [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
fun foo
()
{
when
{}
val x
=
0
when
(
x
)
{
else
->
{}
}
val z
=
when
(
x
)
{
else
->
{}
}
}