mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 15:51:52 +00:00
19 lines
735 B
Plaintext
Vendored
19 lines
735 B
Plaintext
Vendored
package test
|
|
|
|
public interface PrimitiveValueInParam {
|
|
|
|
@test.PrimitiveValueInParam.Ann(bool = true, d = 1.0.toDouble(), f = 1.0.toFloat(), i = 1, l = 1.toLong(), str = "str") 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 final val bool: kotlin.Boolean
|
|
public final val d: kotlin.Double
|
|
public final val f: kotlin.Float
|
|
public final val i: kotlin.Int
|
|
public final val l: kotlin.Long
|
|
public final val str: kotlin.String
|
|
}
|
|
}
|