10 lines
239 B
Kotlin
Vendored
10 lines
239 B
Kotlin
Vendored
// "Replace with 'test.Bar'" "true"
|
|
|
|
package test
|
|
|
|
@Deprecated("Replace with bar", ReplaceWith("test.Bar"))
|
|
annotation class Foo(val p1: String, val p2: Int)
|
|
|
|
annotation class Bar(val p1: String, val p2: Int)
|
|
|
|
@Foo<caret>("", 1) class C {} |