Deprecate deprecated in favor of Deprecated

This commit is contained in:
Denis Zharkov
2015-09-01 19:59:19 +03:00
parent 952d45dc8b
commit 31244edec9
444 changed files with 686 additions and 688 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
package test
enum class MyEnum(@param:deprecated("") @property:deprecated("") val ord: Int) {
enum class MyEnum(@param:Deprecated("") @property:Deprecated("") val ord: Int) {
ENTRY(239);
fun f(Deprecated p: Int) {
fun f(@java.lang.Deprecated p: Int) {
}
}
@@ -3,8 +3,8 @@ package test
internal final enum class MyEnum : kotlin.Enum<test.MyEnum> {
enum entry ENTRY
private constructor MyEnum(/*0*/ kotlin.deprecated(value = "") kotlin.Int)
kotlin.deprecated(value = "") internal final val ord: kotlin.Int
private constructor MyEnum(/*0*/ kotlin.Deprecated(value = "") kotlin.Int)
kotlin.Deprecated(value = "") internal final val ord: kotlin.Int
protected final /*fake_override*/ fun clone(): kotlin.Any
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
internal final fun f(/*0*/ java.lang.Deprecated() kotlin.Int): kotlin.Unit