Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertReceiverToParameter
/
memberFun.kt
blob: c481218900bc83666ab7f8853503b2fddfade513 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
class
A
{
fun
<caret>
String
.
foo
(
n
:
Int
):
Boolean
{
return
length
-
n
/
2
>
1
}
fun test
()
{
"1"
.
foo
(
2
)
}
}
fun test
()
{
with
(
A
())
{
"1"
.
foo
(
2
)
}
}