Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
propertyToMethod.kt.after
blob: f3ab51c5cd659a4c7c6570e375afade7844cdf92 [
file
]
// "Replace with 'getX()'" "true"
interface
X
{
@Deprecated
(
""
,
ReplaceWith
(
"getX()"
))
val x
:
String
fun getX
():
String
}
fun foo
(
x
:
X
):
String
{
return
x
.<
caret
>
getX
()
}