Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertToRun
/
methodChain.kt.after
blob: 71aee818f129ca366188a1ecdc6ab6ee50a22325 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
class
MyClass
{
fun foo1
():
MyClass
=
this
fun foo2
():
MyClass
=
this
fun foo3
():
MyClass
=
this
fun foo4
(
a
:
MyClass
)
{
a
.
run
{
foo1
().
foo2
().
foo3
()
foo2
()
foo3
()
}
}
}