Files
kotlin-fork/plugins/allopen/allopen-cli/testData/bytecodeListing/annotationMembers.kt
T

19 lines
401 B
Kotlin
Vendored

// 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() {}
}
}