Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
smartcasts
/
kt10463.kt
blob: a9973ea2f051390074b25578af79c92c4555cb66 [
file
]
val test
:
Int
=
listOf
<
Any
>().
map
{
when
(
it
)
{
is
Int
->
<!
DEBUG_INFO_SMARTCAST
!>
it
<!>
else
->
throw
AssertionError
()
}
}.
sum
()