summaryrefslogtreecommitdiffstats
path: root/tests/model
diff options
context:
space:
mode:
authoraclement <aclement>2006-08-25 09:56:07 +0000
committeraclement <aclement>2006-08-25 09:56:07 +0000
commite00c0f2931f040ca7796a8b4c51efba3d93d6d13 (patch)
tree5c5906a4ca5e7cfb4a55deeb359f572d484d8da4 /tests/model
parent8516e5ac30885e0dcf1546cc372f1dd0d3f00d63 (diff)
downloadaspectj-e00c0f2931f040ca7796a8b4c51efba3d93d6d13.tar.gz
aspectj-e00c0f2931f040ca7796a8b4c51efba3d93d6d13.zip
back again, lower case dir name for linux (see 154552#12)
Diffstat (limited to 'tests/model')
-rw-r--r--tests/model/pr141730_1/pr141730.aj33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/model/pr141730_1/pr141730.aj b/tests/model/pr141730_1/pr141730.aj
new file mode 100644
index 000000000..1698abd3a
--- /dev/null
+++ b/tests/model/pr141730_1/pr141730.aj
@@ -0,0 +1,33 @@
+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 {}