mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-29 08:31:29 +00:00
19 lines
845 B
Plaintext
19 lines
845 B
Plaintext
package test
|
|
|
|
public trait PrimitiveValueInParam {
|
|
|
|
test.PrimitiveValueInParam.Ann(bool = true: kotlin.Boolean, d = 1.0.toDouble(): kotlin.Double, f = 1.0.toFloat(): kotlin.Float, i = 1: kotlin.Int, l = 1.toLong(): kotlin.Long, str = "str": kotlin.String) public open class A {
|
|
public constructor A()
|
|
}
|
|
|
|
public final annotation class Ann : kotlin.Annotation {
|
|
public constructor Ann(/*0*/ i: kotlin.Int, /*1*/ l: kotlin.Long, /*2*/ d: kotlin.Double, /*3*/ f: kotlin.Float, /*4*/ bool: kotlin.Boolean, /*5*/ str: kotlin.String)
|
|
public abstract fun bool(): kotlin.Boolean
|
|
public abstract fun d(): kotlin.Double
|
|
public abstract fun f(): kotlin.Float
|
|
public abstract fun i(): kotlin.Int
|
|
public abstract fun l(): kotlin.Long
|
|
public abstract fun str(): kotlin.String
|
|
}
|
|
}
|