9 lines
165 B
Kotlin
Vendored
9 lines
165 B
Kotlin
Vendored
package dependency
|
|
|
|
@Deprecated("", ReplaceWith("dependency.NewAnnotation"))
|
|
annotation class OldAnnotation
|
|
|
|
annotation class NewAnnotation()
|
|
|
|
@OldAnnotation
|
|
class C |