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