diff options
Diffstat (limited to 'tests/bugs150')
-rw-r--r-- | tests/bugs150/pr120474/$Proxy4.java | 3 | ||||
-rw-r--r-- | tests/bugs150/pr120474/X.aj | 3 |
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) { } +} |