blob: f2fc7904998eb35b147692243c4df8fd6b91436f [file]
// "Replace with 'newFun()'" "true"
@Deprecated("", ReplaceWith("newFun()"))
fun Int.oldFun(): Int = this
fun Int.newFun(): Int = this
fun foo(list: List<String>): Int {
return list
.filter { it.isNotEmpty() }
.map { it.length }
.first()
.<caret>oldFun()
}