Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
refactoring
/
introduceParameter
/
unusedExtensionReceiver.kt
blob: a213f3e7f5d89e477960b4415d65d8ec20922b88 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// WITH_DEFAULT_VALUE: false
class
A
(
val n
:
Int
)
fun A
.
foo
():
Int
{
return
<selection>
n
+
1
</
selection
>
}
fun test
()
{
A
(
1
).
foo
()
with
(
A
(
1
))
{
foo
()
}
}