blob: 02689f271142a6e2f3c49a8c16b8b5c5fc273936 [file] [log] [blame]
// "Replace with 'New'" "true"
package some
object New {
fun foo() {}
}
@Deprecated("Use New", replaceWith = ReplaceWith("New"))
object Old {
fun foo() {}
}
val test = <caret>Old.foo()