aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr158957/PointcutLibrary.aj
blob: ffda35e806c7542c2e639b663176054e59d0c19d (plain)
1
2
3
4
5
6
7
8
9
public aspect PointcutLibrary {

	public static pointcut doIt () :
		execution(public void doIt()) && this(Missing);
	
	public static pointcut println () :
		execution(public void println(..));
	
}