diff options
Diffstat (limited to 'tests/bugs160/pr169706/MyAspect.java')
-rw-r--r-- | tests/bugs160/pr169706/MyAspect.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/bugs160/pr169706/MyAspect.java b/tests/bugs160/pr169706/MyAspect.java deleted file mode 100644 index e533064db..000000000 --- a/tests/bugs160/pr169706/MyAspect.java +++ /dev/null @@ -1,16 +0,0 @@ -public aspect MyAspect { - - // this throws an exception - before(MyAnnotation myAnnotation) : - //call(* *..*.*(..)) && - call(@MyAnnotation * *(..)) && - @annotation(myAnnotation) { - - } - - // this, however, works fine -// before() : - // call(@MyAnnotation * *(..)) { - // - // } -} |