aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr148027/C.aj
blob: 63b4e6cb6ba182882a79833ab6192f7e16b0a735 (plain)
1
2
3
4
5
6
7
8
9
10
package pkg;

public class C {

	pointcut pointcutInClass() : execution(void cMethod());
	
	public void cMethod() {
		
	}
}