Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
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
}
}