blob: f7c2302551af69d5169394aa7026bc9310d6a43b [file] [log] [blame]
// "Replace with 'newFun()'" "true"
class X {
@Deprecated("", ReplaceWith("newFun()"))
fun oldFun(){}
}
fun newFun(){}
fun foo(x: X) {
x?.<caret>oldFun()
}