Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/classUsages/annotationKeepNamedArgs.kt
T

10 lines
223 B
Kotlin
Vendored

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