summaryrefslogtreecommitdiffstats
path: root/tests/bugs152
diff options
context:
space:
mode:
authoraclement <aclement>2006-06-23 07:38:55 +0000
committeraclement <aclement>2006-06-23 07:38:55 +0000
commit5b90af1d60b15994abaef2c9391b890b8605c482 (patch)
treee49cd007b6a874089fcc483b67fd830db14927b2 /tests/bugs152
parent4dafe048cb1f5bf9a30fcfac58011fe425141b91 (diff)
downloadaspectj-5b90af1d60b15994abaef2c9391b890b8605c482.tar.gz
aspectj-5b90af1d60b15994abaef2c9391b890b8605c482.zip
unfinished (not sure of expected output) testcase committed for 147841
Diffstat (limited to 'tests/bugs152')
-rw-r--r--tests/bugs152/pr147841/A.java12
-rw-r--r--tests/bugs152/pr147841/C.java19
2 files changed, 31 insertions, 0 deletions
diff --git a/tests/bugs152/pr147841/A.java b/tests/bugs152/pr147841/A.java
new file mode 100644
index 000000000..715918494
--- /dev/null
+++ b/tests/bugs152/pr147841/A.java
@@ -0,0 +1,12 @@
+package pkg;
+
+public aspect A {
+
+ before() : execution(* pack.C.method1()) && this(pack.C) {
+ System.err.println("before exec method1 and this is C");
+ }
+
+ before() : call(* pack.C.method2()) && target(pack.C) {
+ System.err.println("before call to method2 and target is C");
+ }
+}
diff --git a/tests/bugs152/pr147841/C.java b/tests/bugs152/pr147841/C.java
new file mode 100644
index 000000000..3b6b49021
--- /dev/null
+++ b/tests/bugs152/pr147841/C.java
@@ -0,0 +1,19 @@
+package pack;
+
+public class C {
+
+ public C() {
+ }
+
+ public void method1() {
+ new C().method2();
+ }
+
+ public void method2() {
+ }
+
+ public static void main(String[] args) {
+ new C().method1();
+ }
+
+}