6ca7d2aad7
Add properties for Java annotations
15 lines
424 B
Plaintext
15 lines
424 B
Plaintext
package test
|
|
|
|
public trait StringConcatenationInParam {
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
public abstract fun value(): kotlin.String
|
|
}
|
|
|
|
test.StringConcatenationInParam.Anno(value = "hello": kotlin.String) public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|