Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
replaceWithArrayCallInAnnotation
/
emptyLiteral.kt.after
blob: 93273c46e9ccd9478947b3cbe4257d3f3b08e3e6 [
file
] [
log
] [
blame
]
// "Replace with array call" "true"
// LANGUAGE_VERSION: 1.2
annotation
class
Some
(
vararg val strings
:
String
)
@Some
(
strings
=
<caret>
[])
class
My