From: aclement Date: Fri, 26 Mar 2010 19:33:08 +0000 (+0000) Subject: 307147: testcode X-Git-Tag: V1_6_9M1~28 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5f71d71ca445298efb9fafcdabd6a026c197453b;p=aspectj.git 307147: testcode --- diff --git a/tests/bugs169/pr307147/B.java b/tests/bugs169/pr307147/B.java new file mode 100644 index 000000000..49c8cbd7f --- /dev/null +++ b/tests/bugs169/pr307147/B.java @@ -0,0 +1,3 @@ +public class B { + private void m() {} +} diff --git a/tests/bugs169/pr307147/Test2.java b/tests/bugs169/pr307147/Test2.java new file mode 100644 index 000000000..5b0a5e058 --- /dev/null +++ b/tests/bugs169/pr307147/Test2.java @@ -0,0 +1,10 @@ +privileged +aspect Test { + + before(): call(* m(..)) {} + + public void B.getFoo() { + m(); + } + +}