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

11 lines
185 B
Kotlin
Vendored

// FIR_IDENTICAL
package test
annotation class Ann(
val b1: Long,
val b2: Long
)
@Ann(1, 1.toLong()) class MyClass
// EXPECTED: @Ann(b1 = 1.toLong(), b2 = 1.toLong())