Deprecated symbol usages fix for the whole project

This commit is contained in:
Valentin Kipyatkov
2015-05-20 16:11:13 +03:00
parent 78302be571
commit 766ca2b905
27 changed files with 780 additions and 344 deletions
@@ -0,0 +1,6 @@
package pack
@deprecated("", ReplaceWith("newFun(p + 1)", "newPack.newFun"))
fun oldFun(p: Int) {
newFun(p + 1)
}