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

11 lines
229 B
Plaintext
Vendored

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