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