summaryrefslogtreecommitdiffstats
path: root/tests/bugs152
diff options
context:
space:
mode:
authoraclement <aclement>2006-07-06 08:32:13 +0000
committeraclement <aclement>2006-07-06 08:32:13 +0000
commit1b5f76ea13de634c148f46cf1dd37f936579ee6a (patch)
tree8454eebeed335776c1dcadaa1a37a0ba5c4b2f9c /tests/bugs152
parentd1eb6f3a3df0b6c2694e4b036d6ab318a29e9713 (diff)
downloadaspectj-1b5f76ea13de634c148f46cf1dd37f936579ee6a.tar.gz
aspectj-1b5f76ea13de634c148f46cf1dd37f936579ee6a.zip
promoted test 147841 to 153tests
Diffstat (limited to 'tests/bugs152')
-rw-r--r--tests/bugs152/pr147841/A.java12
-rw-r--r--tests/bugs152/pr147841/C.java19
2 files changed, 0 insertions, 31 deletions
diff --git a/tests/bugs152/pr147841/A.java b/tests/bugs152/pr147841/A.java
deleted file mode 100644
index 715918494..000000000
--- a/tests/bugs152/pr147841/A.java
+++ /dev/null
@@ -1,12 +0,0 @@
-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
deleted file mode 100644
index 3b6b49021..000000000
--- a/tests/bugs152/pr147841/C.java
+++ /dev/null
@@ -1,19 +0,0 @@
-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();
- }
-
-}