Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/propertiesWithoutBackingFields/NestedTrait.txt

15 lines
356 B
Plaintext
Vendored

package test
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
internal interface Trait {
test.Anno() internal abstract val property: kotlin.Int
internal abstract fun <get-property>(): kotlin.Int
}
}