DeprecatedSymbolUsageFix to keep line breaks when possible

This commit is contained in:
Valentin Kipyatkov
2015-05-28 16:14:15 +03:00
parent 5e5e71882e
commit 08cf8065ea
14 changed files with 322 additions and 70 deletions
@@ -0,0 +1,14 @@
// "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()
}