Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlStructures
/
kt10706.kt
blob: a96043b600138b3ded0054de5af40cce67fb58e6 [
file
]
fun fn
(
c
:
Char
?):
Any
?
=
if
(
c
==
null
)
TODO
()
else
when
(<!
DEBUG_INFO_SMARTCAST
!>
c
<!>)
{
'a'
->
when
(<!
DEBUG_INFO_SMARTCAST
!>
c
<!>)
{
'B'
->
1
'C'
->
"sdf"
else
->
TODO
()
}
else
->
TODO
()
}