Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
replaceWithArrayCallInAnnotation
/
replaceForbiddenAssignmentWithArrayLiteral.kt.after
blob: 7860cdf06f9fa233b2cb75064d79b82fdc12e317 [
file
]
// "Replace with array call" "true"
// COMPILER_ARGUMENTS: -XXLanguage:+ProhibitAssigningSingleElementsToVarargsInNamedForm
// DISABLE-ERRORS
annotation
class
Some
(
vararg val strings
:
String
)
@Some
(
strings
=
[
"value"
])
class
My