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