JVM_IR KT-43524 static wrappers for deprecated accessors are deprecated

This commit is contained in:
Dmitry Petrov
2020-12-01 13:02:42 +03:00
parent e96fc74ffa
commit 1412ee96f8
5 changed files with 103 additions and 1 deletions
@@ -0,0 +1,24 @@
// WITH_RUNTIME
// JVM_TARGET: 1.8
class TestClass {
companion object {
@Deprecated("")
@JvmStatic
val a: Int = 1
}
}
object TestObject {
@Deprecated("")
@JvmStatic
val a: Int = 1
}
interface TestInterface {
companion object {
@Deprecated("")
@JvmStatic
val a: Int = 1
}
}