Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertToRun
/
methodChainWithItParameter.kt
blob: 4d41f35623b068a57402817ee7f9fcda56a4e087 [
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
)
{
listOf
<
MyClass
>().
forEach
{
a
.
foo1
(
it
).
foo2
().
foo3
()
a
.
foo2
()<
caret
>
}
}
}