blob: de0b0e590e47b1083da42416b8bcab7e5a9d9d6a [file] [log] [blame]
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()
}
}