24 lines
354 B
Kotlin
Vendored
24 lines
354 B
Kotlin
Vendored
// 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
|
|
}
|
|
} |