mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
15 lines
347 B
Plaintext
15 lines
347 B
Plaintext
package test
|
|
|
|
internal final annotation class Anno : jet.Annotation {
|
|
/*primary*/ public constructor Anno()
|
|
}
|
|
|
|
internal final class Class {
|
|
/*primary*/ public constructor Class()
|
|
|
|
internal trait Trait {
|
|
test.Anno() internal abstract val property: jet.Int
|
|
internal abstract fun <get-property>(): jet.Int
|
|
}
|
|
}
|