blob: ed32397c2b3d5b170f99e6a2151bc4308299a8cc [file] [log] [blame]
// "Replace with 'newFun(b, a, null)'" "true"
@Deprecated("", ReplaceWith("newFun(b, a, null)"))
fun oldFun(a: Int, b: String) {
}
fun newFun(b: String, a: Int, x: Any?){}
fun foo() {
<caret>oldFun(1, "x")
}