Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/annotations/internalProperty.kt
T
2020-10-14 19:32:51 +02:00

10 lines
130 B
Kotlin
Vendored

annotation class Anno
class C {
@Anno
internal val property: Int get() = 0
}
@Anno
internal val property: Int get() = 0