Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
resolve
/
partialBodyResolve
/
ThisQualifiedAutoCast.kt
blob: 621ff2d3385e20b33342a1b37f0c75413ed00a74 [
file
]
class
C
(
val s
:
String
?)
{
fun foo
(
p
:
Boolean
)
{
if
(
p
)
{
print
(
s
!!)
}
else
{
print
(
this
.
s
!!)
}
<caret>
s
.
length
}
}