aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model/pr145963_1/BinaryAspect.aj
blob: 4c4bccaee6473521da3237a4df414fb50e2be7fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package pkg;

public aspect BinaryAspect {

	declare warning : (get(* System.out) || get(* System.err)) : "There should be no printlns";

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