Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
replaceWithArrayCallInAnnotation
/
literalWithValues.kt
blob: bcebbb9b558e87a73f88bb79cc9672292475ab6a [
file
] [
log
] [
blame
]
// "Replace with array call" "true"
// LANGUAGE_VERSION: 1.2
annotation
class
Some
(
vararg val ints
:
Int
)
@Some
(
ints
=
*[
1
,
2
,<
caret
>
3
])
class
My