Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
changeSignature
/
ConvertReceiverToParameter1After.kt
blob: 8c727429e41325e86cf9687099df70ef807f2ba7 [
file
] [
log
] [
blame
]
fun
<caret>
foo
(
x
:
X
,
s
:
String
,
k
:
Int
):
Boolean
{
return
x
.
k
+
s
.
length
-
k
>
0
}
class
X
(
val k
:
Int
)
fun test
()
{
foo
(
X
(
0
),
"1"
,
2
)
with
(
X
(
0
))
{
foo
(
this
,
"1"
,
2
)
}
}