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

10 lines
167 B
Plaintext
Vendored

// "Replace with 'test.Bar'" "true"
package test
@deprecated("Replace with bar", ReplaceWith("test.Bar"))
annotation class Foo
annotation class Bar
@Bar class C {}