org.aspectj/tests/new/RecognizeAspectCE.java

8 lines
257 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
// 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
2002-12-16 19:51:06 +01:00
}