summaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/coverage/pkg/ClassWithNestedAspect2.java
blob: 1a4650a5b85de77c773864b408bc8b276ff2797f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package pkg;

public class ClassWithNestedAspect2 {
	
	public void amethod() {
	}
	
	class InnerClass {

		aspect NestedAspect { 
			pointcut p() : execution(* ClassWithNestedAspect.amethod(..));
			
			before() : p() {
			}
		} 

	}
	
	
}