summaryrefslogtreecommitdiffstats
path: root/tests/bugs190/modules/eee/Azpect.java
blob: 5dd4aa3423e0eabba664e4d366a81288206df5f6 (plain)
1
2
3
4
5
6
7
package aspects;

public aspect Azpect {
	before(): execution(* main(..)) {
		System.out.println("Azpect running");
	}
}