summaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr158957/PointcutLibrary.aj
diff options
context:
space:
mode:
authormwebster <mwebster>2006-10-05 10:13:54 +0000
committermwebster <mwebster>2006-10-05 10:13:54 +0000
commitc315f9d9a754d01ea608d6d1ae020889d4018fc6 (patch)
treef64fe7729bbe5e5dc2f8bfd6ecfccecd10118a89 /tests/bugs153/pr158957/PointcutLibrary.aj
parent3ebee688f8dab9c114ca61b685b324c19640ae9b (diff)
downloadaspectj-c315f9d9a754d01ea608d6d1ae020889d4018fc6.tar.gz
aspectj-c315f9d9a754d01ea608d6d1ae020889d4018fc6.zip
Bug 158957 "NPE in LTW with RMI dynamic proxies w/ pointcut reuse" (restore catch(Throwable) in Aj.preProcess() and make adaptor disabled by default)
Diffstat (limited to 'tests/bugs153/pr158957/PointcutLibrary.aj')
-rw-r--r--tests/bugs153/pr158957/PointcutLibrary.aj9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs153/pr158957/PointcutLibrary.aj b/tests/bugs153/pr158957/PointcutLibrary.aj
new file mode 100644
index 000000000..ffda35e80
--- /dev/null
+++ b/tests/bugs153/pr158957/PointcutLibrary.aj
@@ -0,0 +1,9 @@
+public aspect PointcutLibrary {
+
+ public static pointcut doIt () :
+ execution(public void doIt()) && this(Missing);
+
+ public static pointcut println () :
+ execution(public void println(..));
+
+} \ No newline at end of file