4abcc278fd
(cherry picked from commit 886cf21)
13 lines
172 B
Plaintext
Vendored
13 lines
172 B
Plaintext
Vendored
// "Replace with 'newFun()'" "true"
|
|
|
|
@Deprecated("", ReplaceWith("newFun()"))
|
|
fun oldFun(p: Int) {
|
|
newFun()
|
|
}
|
|
|
|
fun newFun(){}
|
|
|
|
fun foo() {
|
|
/* use zero */newFun()
|
|
}
|