blob: bf9965ad804b0727b5bfa90c015d536783c04eff [file] [log] [blame]
// "Replace with 'this'" "true"
class C {
@Deprecated("", ReplaceWith("this"))
fun oldFun(): C = this
}
fun foo() {
C().<caret>oldFun()
}