aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model/pr141730_3/MyBar.aj
blob: 3a38885ce0d910e25a49d47f1f1eba5a08c4d9a3 (plain)
1
2
3
4
5
6
7
8
9
package bar;

public aspect MyBar {

	before() : call(* main(..)) {
		System.out.println("about to call a main method");
	}
	
}