Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlow
/
CalleeExpression.kt
blob: 9de0778a62fbcc1a054931bd7e50ecfd7e3995ff [
file
]
class
C
(
val f
:
()
->
Unit
)
fun test
(
e
:
Any
)
{
if
(
e
is
C
)
{
(<!
DEBUG_INFO_SMARTCAST
!>
e
<!>.
f
)()
}
}