aboutsummaryrefslogtreecommitdiffstats
path: root/ajde.core/testdata/InpathTest/src2/Aspect.java
diff options
context:
space:
mode:
Diffstat (limited to 'ajde.core/testdata/InpathTest/src2/Aspect.java')
-rw-r--r--ajde.core/testdata/InpathTest/src2/Aspect.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/ajde.core/testdata/InpathTest/src2/Aspect.java b/ajde.core/testdata/InpathTest/src2/Aspect.java
new file mode 100644
index 000000000..c70994870
--- /dev/null
+++ b/ajde.core/testdata/InpathTest/src2/Aspect.java
@@ -0,0 +1,7 @@
+public aspect Aspect {
+ pointcut sayCalls(): call(* say(..));
+
+ before(): sayCalls() {
+ System.err.println("Before say()");
+ }
+}