Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
classUsages
/
annotation3.kt.after
blob: 2f429a18811d2079c9a963e5802d339ac311c877 [
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
)
@Bar
(
1
)
class
C
{}