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

16 lines
232 B
Kotlin
Vendored

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