8 lines
218 B
Kotlin
Vendored
8 lines
218 B
Kotlin
Vendored
package dependency
|
|
|
|
@Deprecated("", ReplaceWith("dependency.NewAnnotation"))
|
|
annotation class OldAnnotation(val p: Int = 0)
|
|
|
|
annotation class NewAnnotation(val p: Int = 0, val newP: String = "")
|
|
|
|
@OldAnnotation class C |