blob: 93095255f4cb412c302f4e35c52a9150dbdc72a7 [file] [log] [blame]
package dependency
class C {
@Deprecated("", ReplaceWith("newFun(this)"))
fun oldFun() {}
companion object {
fun newFun(c: C) {}
}
}