Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
classUsages
/
annotation2.kt.after
blob: 7c3f7704335070e391fa0604191e909300ccdf52 [
file
] [
log
] [
blame
]
// "Replace with 'test.Bar'" "true"
package
test
@Deprecated
(
"Replace with bar"
,
ReplaceWith
(
"test.Bar"
))
annotation
class
Foo
(
val p1
:
String
,
val p2
:
Int
)
annotation
class
Bar
(
val p1
:
String
,
val p2
:
Int
)
@Bar
(
""
,
1
)
class
C
{}