Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/properties/extensionPropertyWriteToProperty.kt
T
2018-05-24 15:15:23 +03:00

16 lines
247 B
Kotlin
Vendored

// "Replace with 'm'" "true"
private class C {
var m: String = ""
}
@Deprecated("", ReplaceWith("m"))
private var C.old: String
get() = m
set(value) {
m = value
}
private fun use(c: C, s: String) {
c.old<caret> = s
}