Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
properties
/
extensionPropertyWriteToProperty.kt
blob: 2f1ebbc85cc6ae5fcfd600431c124c59fd4a705c [
file
] [
log
] [
blame
]
// "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
}