mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
12 lines
351 B
Plaintext
Vendored
12 lines
351 B
Plaintext
Vendored
package test
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
/*primary*/ public constructor Anno(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
public final fun <get-value>(): kotlin.String
|
|
}
|
|
|
|
public final class Constructor {
|
|
/*primary*/ @test.Anno(value = "string") public constructor Constructor()
|
|
}
|