summaryrefslogtreecommitdiffstats
path: root/tests/errors/RecursiveCCutSpecifier.java
blob: 049dca63a999990d7077a1dd86a9cc0bed69dd2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package errors;

import org.aspectj.testing.Tester;

/**
 * Test for: PR #95
 */

aspect RecursiveCCutSpecifier { 
  pointcut setFile(LocalFile f): receptions(* *(..)) || setFile(f) && instanceof(f);
  
  /*static*/ before(LocalFile f): setFile(f) {
		// nop
  } 
} 

class LocalFile { 
    public LocalFile() {}
}