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