Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
CustomAnnotation.java
blob: c613d72291dafac6810bbe509e189849f8cb0446 [
file
] [
log
] [
blame
]
package
test
;
public
interface
CustomAnnotation
{
@MyAnnotation
(
MyEnum
.
ONE
)
public
class
MyTest
{}
public
@interface
MyAnnotation
{
MyEnum
value
();
}
public
enum
MyEnum
{
ONE
}
}