diff options
Diffstat (limited to 'ajde.core/testdata/BuildCancelling/A1.aj')
-rw-r--r-- | ajde.core/testdata/BuildCancelling/A1.aj | 9 |
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 |