blob: 47937d082ef7267c33f2b09a31ffad312b59d757 [file] [log] [blame]
// "Remove @ from annotation argument" "true"
// DISABLE-ERRORS
annotation class Y()
annotation class X(val value: Array<Y>)
@X(arrayOf(Y(), @Y()<caret>))
fun foo() {
}