6575fb8535
#KT-8912 Fixed
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 |