Files
kotlin-fork/idea/testData/refactoring/introduceVariable/skipUsageInAssignmentLHS.kt
T
2016-10-13 19:00:58 +03:00

8 lines
146 B
Kotlin
Vendored

// WITH_RUNTIME
class Foo(var bar: Int)
fun test() {
val foo = Foo(1)
println(<selection>foo.bar</selection>)
foo.bar = foo.bar + 1
}