Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
onAssignmentLHS.kt
blob: bf040348c46187741adeec1107c50edfeecc80c7 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
class
Foo
(
var
bar
:
Int
)
fun test
()
{
val foo
=
Foo
(
1
)
println
(
foo
.
bar
)
<selection>
foo
.
bar
</
selection
>
=
foo
.
bar
+
1
}