Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/propertyAssignmentNoReceiver.kt.after
T
2017-12-07 12:14:29 +03:00

20 lines
278 B
Plaintext
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.apply {
new = "foo"
}
}