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.

pr99191_3.java 218B

12345678910
  1. @interface Annotation{}
  2. aspect B {
  3. declare @method : public * C.noSuchMethod(..) : @Annotation; // should be an error
  4. declare @method : * B.noSuchMethod(..) : @Annotation; // should be an error
  5. }
  6. class C {
  7. }