Files
kotlin-fork/compiler/testData/loadKotlin/annotations/propertiesWithoutBackingFields/Trait.txt
T
2013-10-17 19:01:45 +04:00

11 lines
252 B
Plaintext

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