Files
kotlin/compiler/testData/codegen/bytecodeText/inheritedPropertyAnnotations.kt

11 lines
198 B
Kotlin
Vendored

annotation class Ann
abstract class Base {
@Ann val x: Int = 0
}
class Derived : Base()
// We only want to generate the `getX$annotations` method in `Base`, not in `Derived`.
// 1 @LAnn;\(\)