Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
fir
/
analysis-tests
/
testData
/
resolve
/
whenWithWhenAsStatement.kt
blob: 2c209a60f9877e920331a9172dd80f370956ace1 [
file
]
fun test
(
value
:
Int
)
{
when
(
value
)
{
0
->
{}
1
->
when
(
value
)
{
2
->
false
}
}
}