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