Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/wholeProject/annotation.before.Declaration.kt
T
2015-09-04 18:19:31 +03:00

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