Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
nonEquivalentReceivers.kt
blob: 0a4249b85208dc4594626dfbbf7c0f1542ac6e3d [
file
] [
log
] [
blame
]
class
A
{
val value
:
Int
=
0
}
fun foo
(
body
:
A
.()
->
Unit
)
{}
fun bar
()
{
foo
{
print
(<
selection
>
value
</
selection
>)
print
(
value
)
}
foo
{
print
(
value
)
print
(
value
)
}
}