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