aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
authoraclement <aclement>2005-12-13 08:24:13 +0000
committeraclement <aclement>2005-12-13 08:24:13 +0000
commit3339edbae5d6891cfbde6952329a4ff2808a7901 (patch)
tree2564c2a7b598326a064a4577cb8d60d491b91d3b /tests/bugs150
parentdf3adcd1825893130a1873dfcad1bd82e5b9f70b (diff)
downloadaspectj-3339edbae5d6891cfbde6952329a4ff2808a7901.tar.gz
aspectj-3339edbae5d6891cfbde6952329a4ff2808a7901.zip
fix for 120474 ($Proxy)
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/pr120474/$Proxy4.java3
-rw-r--r--tests/bugs150/pr120474/X.aj3
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs150/pr120474/$Proxy4.java b/tests/bugs150/pr120474/$Proxy4.java
new file mode 100644
index 000000000..3b617ca31
--- /dev/null
+++ b/tests/bugs150/pr120474/$Proxy4.java
@@ -0,0 +1,3 @@
+public class $Proxy4 {
+ public void foo() {}
+}
diff --git a/tests/bugs150/pr120474/X.aj b/tests/bugs150/pr120474/X.aj
new file mode 100644
index 000000000..c0dd297e5
--- /dev/null
+++ b/tests/bugs150/pr120474/X.aj
@@ -0,0 +1,3 @@
+public aspect X {
+ before(): execution(* foo(..)) && !within(X) { }
+}