mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-25 08:31:32 +00:00
14 lines
352 B
Plaintext
14 lines
352 B
Plaintext
package test
|
|
|
|
public trait StringInParam {
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.String)
|
|
public abstract fun value(): kotlin.String
|
|
}
|
|
|
|
test.StringInParam.Anno(value = "hello": kotlin.String) public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|