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