JVM_IR KT-45195 generate non-static annotation members as ACC_ABSTRACT
This commit is contained in:
committed by
TeamCityServer
parent
2fd69a5718
commit
17da240910
@@ -0,0 +1,18 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
annotation class AllOpen
|
||||
|
||||
annotation class Plain(val name: String, val index: Int) {
|
||||
companion object {
|
||||
@JvmStatic val staticProperty = 42
|
||||
@JvmStatic fun staticFun() {}
|
||||
}
|
||||
}
|
||||
|
||||
@AllOpen
|
||||
annotation class MyComponent(val name: String, val index: Int) {
|
||||
companion object {
|
||||
@JvmStatic val staticProperty = 42
|
||||
@JvmStatic fun staticFun() {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user