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.

RecursiveCCutSpecifier.java 315B

12345678910111213141516171819
  1. package errors;
  2. import org.aspectj.testing.Tester;
  3. /**
  4. * Test for: PR #95
  5. */
  6. aspect RecursiveCCutSpecifier {
  7. pointcut setFile(LocalFile f): receptions(* *(..)) || setFile(f) && instanceof(f);
  8. /*static*/ before(LocalFile f): setFile(f) {
  9. // nop
  10. }
  11. }
  12. class LocalFile {
  13. public LocalFile() {}
  14. }