diff options
Diffstat (limited to 'tests/model')
-rw-r--r-- | tests/model/pr141730_1/pr141730.aj | 33 |
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 {} |