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