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.

Bug.java 282B

1234567891011
  1. aspect MyAspect implements MyInterface<MyClass> {
  2. before() : MyAspect1<MyClass>.myPointcutInInterface(){ }
  3. }
  4. class MyClass { }
  5. interface MyInterface<T>{
  6. public abstract static aspect MyAspect1<T> {
  7. public final pointcut myPointcutInInterface() : call(* *..*.*(..));
  8. }
  9. }