Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
IfNotIsNothingProp.kt
blob: b56751642b81f3bd9a23b753d225c5e641d12225 [
file
]
val prop
:
Nothing
get
()
=
throw
Exception
()
fun foo
(
p
:
Any
)
{
if
(
p
!
is
String
)
{
prop
}
println
(<
caret
>
p
.
length
)
}