aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs174
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs174')
-rw-r--r--tests/bugs174/pr419279/Code.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs174/pr419279/Code.java b/tests/bugs174/pr419279/Code.java
new file mode 100644
index 000000000..672d720ef
--- /dev/null
+++ b/tests/bugs174/pr419279/Code.java
@@ -0,0 +1,10 @@
+public aspect Code {
+ before(): execution(* *(String)) { }
+ before(): call(* someMethod(..)) {
+ System.out.println(thisJoinPoint);
+ }
+ public void foo() {
+ someMethod();
+ }
+ public void someMethod(){}
+}