Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/annotations/propertiesWithoutBackingFields/NestedTrait.txt
T
2015-07-14 16:25:08 +03:00

15 lines
376 B
Plaintext
Vendored

package test
kotlin.annotation.annotation() internal final 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
}
}