Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/wholeProject/annotation.before.Main.kt
T
Valentin Kipyatkov 64e520b689 Moved test data
2015-09-03 15:56:00 +03:00

10 lines
174 B
Kotlin
Vendored

// "Replace usages of 'OldAnnotation' in whole project" "true"
package test
import dependency.OldAnnotation
fun foo(a: OldAnnotation) {
}
@<caret>OldAnnotation(1) class X