11 lines
171 B
Kotlin
Vendored
11 lines
171 B
Kotlin
Vendored
// "Replace usages of 'OldAnnotation' in whole project" "true"
|
|
|
|
package test
|
|
|
|
import dependency.OldAnnotation
|
|
|
|
fun foo(a: OldAnnotation) {
|
|
}
|
|
|
|
@<caret>OldAnnotation
|
|
class X |