aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs161/pr64222
diff options
context:
space:
mode:
authoraclement <aclement>2008-06-10 18:52:11 +0000
committeraclement <aclement>2008-06-10 18:52:11 +0000
commit58961143f7f8e28243a9ae58cd89b25ee14b318d (patch)
tree2ad81575a2b65d6f8a4af76520cc30c9146ad845 /tests/bugs161/pr64222
parent5c042e543e1c66a8fe023dcd29f2cb30486d033f (diff)
downloadaspectj-58961143f7f8e28243a9ae58cd89b25ee14b318d.tar.gz
aspectj-58961143f7f8e28243a9ae58cd89b25ee14b318d.zip
tests for 159268, 235505, 64222 (all parser related)
Diffstat (limited to 'tests/bugs161/pr64222')
-rw-r--r--tests/bugs161/pr64222/C.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs161/pr64222/C.java b/tests/bugs161/pr64222/C.java
new file mode 100644
index 000000000..f7c3c4024
--- /dev/null
+++ b/tests/bugs161/pr64222/C.java
@@ -0,0 +1,9 @@
+class C {
+ int dummy() {return 5;}
+}
+
+aspect Foo {
+ around(): call(int C.dummy()) {
+ proceed();
+ }
+}