Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
IfNotIsMyError.dump
blob: da0f5a3d5a435ebd3bad3fe0c46e64dacef52717 [
file
]
Resolve
target
:
value
-
parameter p
:
kotlin
.
Any
smart
-
cast to kotlin
.
String
----------------------------------------------
fun myError
():
Nothing
=
throw
Exception
()
fun foo
(
p
:
Any
)
{
if
(
p
!
is
String
)
{
myError
()
}
println
(<
caret
>
p
.
length
)
}