diff options
Diffstat (limited to 'tests/java5/annotations/within/PlainWithinTests.java')
-rw-r--r-- | tests/java5/annotations/within/PlainWithinTests.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/java5/annotations/within/PlainWithinTests.java b/tests/java5/annotations/within/PlainWithinTests.java new file mode 100644 index 000000000..087356a20 --- /dev/null +++ b/tests/java5/annotations/within/PlainWithinTests.java @@ -0,0 +1,12 @@ +public aspect PlainWithinTests { + + // CW L 21 + declare warning : execution(* foo()) && within(@MyAnnotation *) + : "positive within match on annotation"; + + // CW L25 + declare warning : execution(* foo()) && !within(@MyAnnotation *) + : "negative within match on annotation"; + + +}
\ No newline at end of file |