blob: e3c23b9ee2519e1b079826c9e57a39093f881d29 [file] [log] [blame]
// "Replace with 'p'" "true"
@Deprecated("", ReplaceWith("p"))
fun oldFun(p: Int): Int = p
fun foo() {
val v = <caret>oldFun(0)
}