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.

PR119543.java 214B

123456789101112131415
  1. public class PR119543 {
  2. public abstract static aspect A<T> {
  3. private pointcut caching();
  4. private pointcut permitted();
  5. before() : caching() {
  6. }
  7. }
  8. static aspect A1 extends A<String> {
  9. }
  10. }