blob: 84c91d6efbe85e642879aec252005c4f8ca4e1b2 [file]
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()
}
}