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