From e00c0f2931f040ca7796a8b4c51efba3d93d6d13 Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 25 Aug 2006 09:56:07 +0000 Subject: [PATCH] back again, lower case dir name for linux (see 154552#12) --- tests/model/pr141730_1/pr141730.aj | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tests/model/pr141730_1/pr141730.aj 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 {} -- 2.39.5