aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
authoracolyer <acolyer>2006-02-10 18:00:52 +0000
committeracolyer <acolyer>2006-02-10 18:00:52 +0000
commit26cc94c194549e2b0c6245916bf57d1dd5ad2897 (patch)
treee9667c45044e0068616fe6eed41b71ee3804ace6 /tests/bugs150
parentd07f63a30c5af1a380f5091f18c21003aebfae79 (diff)
downloadaspectj-26cc94c194549e2b0c6245916bf57d1dd5ad2897.tar.gz
aspectj-26cc94c194549e2b0c6245916bf57d1dd5ad2897.zip
Progress on: empty catch block warning - test cases
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/pr82989.aj1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/bugs150/pr82989.aj b/tests/bugs150/pr82989.aj
index 76ce57827..fabab94e4 100644
--- a/tests/bugs150/pr82989.aj
+++ b/tests/bugs150/pr82989.aj
@@ -13,6 +13,7 @@ privileged aspect B {
try {
m1();
} catch(E e) { // accessor generated for m1() should be defined to throw E
+ System.err.println(e);
}
}
}