aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model/pr77269_1/pack/pr77269.aj
blob: 014c1bed831ddf9c013cb03751f20f3f14479662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package pack;
class Test {
	
	public void testMethod() {
		new Runnable() {
			public void run() {
			}
		};
		class C {
			public void m(){			
			}
		}
	}
	
}

aspect A {
	
	pointcut p() : execution(* run(..));
	
	before() : p() {
	}

}