Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
EmptyArrayInParam.java
blob: 53828dc87a596f8ebb2d005c6ddc391b912c6723 [
file
] [
log
] [
blame
]
package
test
;
import
java
.
lang
.
annotation
.
ElementType
;
import
java
.
lang
.
annotation
.
Target
;
public
interface
EmptyArrayInParam
{
public
@interface
MyAnnotation
{
String
[]
value
();
}
@MyAnnotation
({})
public
class
A
{
}
}