mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-13 15:52:11 +00:00
14 lines
387 B
Plaintext
14 lines
387 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()
|
|
}
|
|
}
|