Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
removeAtFromAnnotationArgument
/
arrayParam.kt
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
()
{
}