Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/parameters/expressions/minus.kt
T
2021-07-15 17:08:16 +00:00

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 = 0.toByte(), i = 0, l = 0.toLong(), s = 0.toShort())