JVM_IR KT-45195 generate non-static annotation members as ACC_ABSTRACT

This commit is contained in:
Dmitry Petrov
2021-03-18 16:02:53 +03:00
committed by TeamCityServer
parent 2fd69a5718
commit 17da240910
5 changed files with 101 additions and 11 deletions
@@ -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() {}
}
}