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

10 lines
232 B
Plaintext
Vendored

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