Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
removeAtFromAnnotationArgument
/
arrayParam.kt.after
blob: aeffb0e6f53ebd1ac06bd58bc935f44a24e7c95a [
file
]
// "Remove @ from annotation argument" "true"
// DISABLE-ERRORS
annotation
class
Y
()
annotation
class
X
(
val value
:
Array
<
Y
>)
@X
(
arrayOf
(
Y
(),
Y
()))
fun foo
()
{
}