Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
objects.kt
blob: 02689f271142a6e2f3c49a8c16b8b5c5fc273936 [
file
] [
log
] [
blame
]
// "Replace with 'New'" "true"
package
some
object
New
{
fun foo
()
{}
}
@Deprecated
(
"Use New"
,
replaceWith
=
ReplaceWith
(
"New"
))
object
Old
{
fun foo
()
{}
}
val test
=
<caret>
Old
.
foo
()