Deprecate deprecated in favor of Deprecated
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user