summaryrefslogtreecommitdiffstats
path: root/tests/new/RecognizeAspectCE.java
blob: a84effb0413faf15f4533b4e49c0878e840b8eaa (plain)
1
2
3
4
5
6
7
// PR#457
class RecognizeAspectCE {
	public static void main(String[] ignore) { }
	pointcut mumble()  // would like error here: "pointcuts not allowed in classes - use aspect"
     : execution(public static void RecognizeAspectCE.main(String[]));
	before(): mumble() { } // ok: get error here: constructor has the wrong name
}