mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-03 08:31:29 +00:00
15 lines
402 B
Plaintext
Vendored
15 lines
402 B
Plaintext
Vendored
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
|
|
public abstract fun value(): kotlin.String
|
|
}
|
|
|
|
test.StringInParam.Anno(value = "hello": kotlin.String) public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|