mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-25 08:31:32 +00:00
13 lines
131 B
Java
13 lines
131 B
Java
package test;
|
|
|
|
@MyAnnotation(MyEnum.ONE)
|
|
class MyTest {}
|
|
|
|
@interface MyAnnotation {
|
|
MyEnum value();
|
|
}
|
|
|
|
enum MyEnum {
|
|
ONE
|
|
}
|