summaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr77269b.aj
blob: 4f95dbb2c3b687cf0d64e76d6e91a2f14e8eeb41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Test {
	
	public void testMethod() {
		new Runnable() {
			public void run() {
			}
		};
		class C {
			public void m(){			
			}
		}
	}
	
}

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

}