Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
classUsages
/
annotation3.kt
blob: c8652c341ffbb1009acbcf9ac720467b47d28f7c [
file
] [
log
] [
blame
]
// "Replace with 'test.Bar(1)'" "true"
package
test
@Deprecated
(
"Replace with bar"
,
ReplaceWith
(
"test.Bar(1)"
))
annotation
class
Foo
annotation
class
Bar
(
val p
:
Int
)
@Foo
<caret>
class
C
{}