blob: 670a0ad1c73620181ce8be4497ead60a51ffad3f [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>newFun("x", 1, null)
}