Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertToRun
/
methodChainWithThisParameter.kt
blob: d32e1286c1cfad6e7828bee72f2f6fef169644b2 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: false
class
MyClass
{
fun foo1
(
a
:
MyClass
):
MyClass
=
this
fun foo2
():
MyClass
=
this
fun foo3
():
MyClass
=
this
fun foo4
(
a
:
MyClass
)
{
a
.
foo1
(
this
).
foo2
().
foo3
()
a
.
foo2
()<
caret
>
}
}