aboutsummaryrefslogtreecommitdiffstats
path: root/ajde.core/testdata/BuildCancelling/A1.aj
diff options
context:
space:
mode:
Diffstat (limited to 'ajde.core/testdata/BuildCancelling/A1.aj')
-rw-r--r--ajde.core/testdata/BuildCancelling/A1.aj9
1 files changed, 9 insertions, 0 deletions
diff --git a/ajde.core/testdata/BuildCancelling/A1.aj b/ajde.core/testdata/BuildCancelling/A1.aj
new file mode 100644
index 000000000..35963153d
--- /dev/null
+++ b/ajde.core/testdata/BuildCancelling/A1.aj
@@ -0,0 +1,9 @@
+
+public aspect A1 {
+
+ pointcut m1(): execution(* main(..));
+
+ before(): m1() {
+ System.err.println("Before main runs");
+ }
+} \ No newline at end of file