Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/inWholeProject.after.kt
T
Valentin Kipyatkov 6575fb8535 Annotations supported
#KT-8912 Fixed
2015-09-03 15:55:59 +03:00

10 lines
167 B
Kotlin
Vendored

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