Files
kotlin/idea/testData/quickfix/deprecatedSymbolUsage/propertyModification.kt
2017-12-07 12:14:29 +03:00

18 lines
264 B
Kotlin
Vendored

// "Replace with 'new'" "true"
// WITH_RUNTIME
class A {
@Deprecated("msg", ReplaceWith("new"))
var old
get() = new
set(value) {
new = value
}
var new = ""
}
fun foo() {
val a = A()
a.<caret>old += "foo"
}