Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/annotation1.kt.after
T
2017-07-07 16:48:31 +02:00

11 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 {}