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