mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 00:21:31 +00:00
15 lines
408 B
Plaintext
Vendored
15 lines
408 B
Plaintext
Vendored
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
|
|
}
|
|
|
|
@test.ArithmeticExpressionInParam.Anno(value = 42) public open class Class {
|
|
public constructor Class()
|
|
}
|
|
}
|