aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder/testsrc_j8/Anno.java
blob: 8540df7f6c39faeed2b208c9758f4fe2b7d6fe6f (plain)
1
2
3
4
5
6
7
import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE_USE)
@interface Anno {
  int value() default 0;
}