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

11 lines
188 B
Plaintext
Vendored

// "Replace with 'test.Bar(1)'" "true"
package test
@Deprecated("Replace with bar", ReplaceWith("test.Bar(1)"))
annotation class Foo
annotation class Bar(val p: Int)
@Bar(1)
class C {}