Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
annotations
/
AnnotationInArray.kt
blob: 5b6ca79c529777290a2a5420bb56d4ce04c8e724 [
file
] [
log
] [
blame
]
// ALLOW_AST_ACCESS
package
test
annotation
class
Anno
(
val value
:
Array
<
Bnno
>
)
annotation
class
Bnno
(
val value
:
String
)
@Anno
(
value
=
[
Bnno
(
"x"
),
Bnno
(
"y"
)]
)
public
class
AnnotationInArray