Remove message and replaceWith parameters from DeprecatedSinceKotlin

This commit is contained in:
Mikhail Zarechenskiy
2020-06-17 18:52:59 +03:00
parent 60c51476f2
commit 158013ef3a
15 changed files with 118 additions and 89 deletions
@@ -1,20 +1,26 @@
// !API_VERSION: 1.3
@Deprecated("")
@DeprecatedSinceKotlin("", errorSince = "1.3")
class ClassCur
@Deprecated("")
@DeprecatedSinceKotlin("", errorSince = "1.3")
fun funCur() {}
@Deprecated("")
@DeprecatedSinceKotlin("", errorSince = "1.3")
val valCur = Unit
@Deprecated("")
@DeprecatedSinceKotlin("", errorSince = "1.4")
class ClassNext
@Deprecated("")
@DeprecatedSinceKotlin("", errorSince = "1.4")
fun funNext() {}
@Deprecated("")
@DeprecatedSinceKotlin("", errorSince = "1.4")
val valNext = Unit