4850fd10f0
Introduced '@' after each annotation
13 lines
244 B
Kotlin
Vendored
13 lines
244 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Ann(
|
|
val b: Byte,
|
|
val s: Short,
|
|
val i: Int,
|
|
val l: Long
|
|
)
|
|
|
|
@Ann(1 + 1, 1 + 1, 1 + 1, 1 + 1) class MyClass
|
|
|
|
// EXPECTED: @Ann(b = 2.toByte(), i = 2, l = 2.toLong(), s = 2.toShort())
|