Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
ThisQualifiedAutoCast.dump
blob: a653409961f16ca828b1733075abd4745e871e52 [
file
]
Resolve
target
:
val s
:
kotlin
.
String
?
smart
-
cast to kotlin
.
String
----------------------------------------------
class
C
(
val s
:
String
?)
{
fun foo
(
p
:
Boolean
)
{
if
(
p
)
{
print
(
s
!!)
}
else
{
print
(
this
.
s
!!)
}
<caret>
s
.
length
}
}