6ca7d2aad7
Add properties for Java annotations
16 lines
467 B
Plaintext
16 lines
467 B
Plaintext
package test
|
|
|
|
public open class ArithmeticExpressionInParam {
|
|
public constructor ArithmeticExpressionInParam()
|
|
|
|
public final annotation class Anno : kotlin.Annotation {
|
|
public constructor Anno(/*0*/ value: kotlin.Int)
|
|
public final val value: kotlin.Int
|
|
public abstract fun value(): kotlin.Int
|
|
}
|
|
|
|
test.ArithmeticExpressionInParam.Anno(value = 42: kotlin.Int) public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|