Files
kotlin/compiler/testData/loadJava/compiledJava/annotations/PrimitiveValueInParam.txt
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

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
}
}