diff options
Diffstat (limited to 'ajde.core/testdata/BuildCancelling/A2.aj')
-rw-r--r-- | ajde.core/testdata/BuildCancelling/A2.aj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ajde.core/testdata/BuildCancelling/A2.aj b/ajde.core/testdata/BuildCancelling/A2.aj new file mode 100644 index 000000000..21755f62e --- /dev/null +++ b/ajde.core/testdata/BuildCancelling/A2.aj @@ -0,0 +1,9 @@ + +public aspect A2 { + + pointcut m1(): execution(* main(..)); + + after(): m1() { + System.err.println("After main runs"); + } +} |