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