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