mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-12 00:21:27 +00:00
16 lines
223 B
Java
Vendored
16 lines
223 B
Java
Vendored
package test;
|
|
|
|
public interface CustomAnnotation {
|
|
|
|
@MyAnnotation(MyEnum.ONE)
|
|
public class MyTest {}
|
|
|
|
public @interface MyAnnotation {
|
|
MyEnum value();
|
|
}
|
|
|
|
public enum MyEnum {
|
|
ONE
|
|
}
|
|
}
|