blob: 21cccc63c06f619d9a3d81b5700957560d797239 [file] [log] [blame]
// "Replace with 'newFun(t)'" "true"
interface X<T> {
@Deprecated("", ReplaceWith("newFun(t)"))
fun oldFun(t: T)
fun newFun(t: T)
}
fun foo(x: X<String>) {
x.<caret>newFun("a")
}