diff options
Diffstat (limited to 'tests/bugs190/modules/fff/extra/AnotherAzpect.java')
-rw-r--r-- | tests/bugs190/modules/fff/extra/AnotherAzpect.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs190/modules/fff/extra/AnotherAzpect.java b/tests/bugs190/modules/fff/extra/AnotherAzpect.java new file mode 100644 index 000000000..16b8c16d6 --- /dev/null +++ b/tests/bugs190/modules/fff/extra/AnotherAzpect.java @@ -0,0 +1,7 @@ +package extra; + +public aspect AnotherAzpect { + before(): execution(* *(..)) && !within(*Azpect) { + System.out.println("AnotherAzpect running"); + } +} |