diff options
Diffstat (limited to 'tests/java5/annotations')
-rw-r--r-- | tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj b/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj index 438af6e3f..4226f9b85 100644 --- a/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj +++ b/tests/java5/annotations/aspectMembers/a/AnnotatedAspect08.aj @@ -12,7 +12,7 @@ public aspect AnnotatedAspect08 { declare error: set(* *) : "hum bahbug"; @AnyAnnotation - declare soft : execution(* *) : Exception; + declare soft : Exception: execution(* *(..)); @ConstructorAnnotation declare parents : A implements I; |