mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 08:31:33 +00:00
17 lines
430 B
Plaintext
Vendored
17 lines
430 B
Plaintext
Vendored
package test
|
|
|
|
public interface StringConstantInParam {
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
}
|
|
|
|
@test.StringConstantInParam.Anno(value = "hello") public open class Class {
|
|
public constructor Class()
|
|
}
|
|
|
|
// Static members
|
|
public const final val HEL: kotlin.String = "hel"
|
|
}
|