blob: 3a981f9509f23d219a0b7c5ea5490234dc000071 [file] [log] [blame]
// "Replace with 'newFun(this)'" "true"
open class C {
@Deprecated("", ReplaceWith("newFun(this)"))
fun oldFun(){}
}
fun newFun(c: C){}
class X {
companion object : C() {
}
fun foo() {
<caret>oldFun()
}
}