mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 08:31:29 +00:00
14 lines
388 B
Plaintext
14 lines
388 B
Plaintext
package test
|
|
|
|
public trait StringInParam : java.lang.Object {
|
|
|
|
public final annotation class Anno : jet.Annotation {
|
|
public constructor Anno(/*0*/ value: jet.String?)
|
|
public abstract fun value(): jet.String?
|
|
}
|
|
|
|
test.StringInParam.Anno(value = "hello": jet.String) public open class Class : java.lang.Object {
|
|
public constructor Class()
|
|
}
|
|
}
|