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