mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
539 B
Plaintext
Vendored
14 lines
539 B
Plaintext
Vendored
package test
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
/*primary*/ public constructor Anno(/*0*/ s: kotlin.String)
|
|
public final val s: kotlin.String
|
|
public final fun <get-s>(): kotlin.String
|
|
}
|
|
|
|
public interface T {
|
|
@test.Anno(s = "bar") public abstract val bar: kotlin.Array<kotlin.Array<kotlin.BooleanArray>>
|
|
public abstract fun <get-bar>(): kotlin.Array<kotlin.Array<kotlin.BooleanArray>>
|
|
@test.Anno(s = "foo") public abstract fun foo(): kotlin.Array<kotlin.Array<kotlin.Array<test.T>>>
|
|
}
|