Files
kotlin-fork/idea/testData/quickfix/removeAtFromAnnotationArgument/namedParam.kt.after
T

10 lines
208 B
Plaintext
Vendored

// "Remove @ from annotation argument" "true"
// ERROR: An annotation argument must be a compile-time constant
annotation class Y()
annotation class X(val value: Y, val y: Y)
@X(Y(), y = Y())
fun foo() {
}