10 lines
174 B
Kotlin
Vendored
10 lines
174 B
Kotlin
Vendored
// "Replace with 'test.Bar'" "true"
|
|
|
|
package test
|
|
|
|
@Deprecated("Replace with bar", ReplaceWith("test.Bar"))
|
|
annotation class Foo
|
|
|
|
annotation class Bar
|
|
|
|
@Foo<caret> class C {} |