blob: 8a375476e3b54a075a7b93c58047a9b12aac5037 [file] [log] [blame]
// "Replace with 'this'" "true"
class C {
@Deprecated("", ReplaceWith("this"))
fun oldFun(): C = this
}
fun foo() {
<caret>C()
}