12 lines
286 B
Kotlin
Vendored
12 lines
286 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Ann(
|
|
val b1: Byte,
|
|
val b2: Byte,
|
|
val b3: Byte,
|
|
val b4: Byte
|
|
)
|
|
|
|
Ann(1, 1.toByte(), 128.toByte(), 128) class MyClass
|
|
|
|
// EXPECTED: Ann(b1 = IntegerValueType(1), b2 = 1.toByte(), b3 = -128.toByte(), b4 = IntegerValueType(128)) |