aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/RecognizeAspectCE.java
blob: 92fb6df1c0334cfe5636aa20f94f340e27f0a148 (plain)
1
2
3
4
5
6
7
// PR#457
class RecognizeAspectCE {
	public static void main(String[] ignore) { }
//	pointcut mumble()  
//     : execution(public static void RecognizeAspectCE.main(String[]));
	before(): this(*) { } // ok: get error here: constructor has the wrong name
}