You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DeclareAtType.java 130B

1234567891011121314
  1. package foo;
  2. @interface MyAnnotation {
  3. }
  4. public aspect DeclareAtType {
  5. declare @type : C : @MyAnnotation;
  6. }
  7. class C {
  8. }