mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 00:21:31 +00:00
14 lines
337 B
Plaintext
Vendored
14 lines
337 B
Plaintext
Vendored
package test
|
|
|
|
public interface StringInParam {
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
}
|
|
|
|
@test.StringInParam.Anno(value = "hello") public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|