mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-27 15:51:49 +00:00
15 lines
424 B
Plaintext
15 lines
424 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 abstract fun value(): kotlin.Int
|
|
}
|
|
|
|
test.ArithmeticExpressionInParam.Anno(value = 42: kotlin.Int) public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|