aboutsummaryrefslogtreecommitdiffstats
path: root/tests/model
diff options
context:
space:
mode:
authoraclement <aclement>2006-08-25 09:55:17 +0000
committeraclement <aclement>2006-08-25 09:55:17 +0000
commit8516e5ac30885e0dcf1546cc372f1dd0d3f00d63 (patch)
tree03a79f01111ab6cf70cb9f718f092bd23f246889 /tests/model
parent409e613aacda8d3e5bee8eed3d2919340e0ff7cd (diff)
downloadaspectj-8516e5ac30885e0dcf1546cc372f1dd0d3f00d63.tar.gz
aspectj-8516e5ac30885e0dcf1546cc372f1dd0d3f00d63.zip
removed, needs a rename
Diffstat (limited to 'tests/model')
-rw-r--r--tests/model/PR141730_1/pr141730.aj33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/model/PR141730_1/pr141730.aj b/tests/model/PR141730_1/pr141730.aj
deleted file mode 100644
index 1698abd3a..000000000
--- a/tests/model/PR141730_1/pr141730.aj
+++ /dev/null
@@ -1,33 +0,0 @@
-aspect A {
-
- pointcut p() : execution(* *.*(..)) || execution(*.new(..));
-
- before() : p() {
-
- }
-
-}
-
-class C {
-
- public C() {}
-
- public void method() {}
-
- public void intMethod(int i) {}
-
- public void stringMethod(String s) {}
-
- public void myClassMethod(MyClass s) {}
-
- public void twoArgsMethod(int i, String s) {}
-
- public static void main(String[] args) {}
-
- public void multiMethod(String[][] s) {}
-
- public void intArray(int[] i) {}
-
-}
-
-class MyClass {}