aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/reflection/AtAspectJDeclareParents.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/java5/reflection/AtAspectJDeclareParents.aj')
-rw-r--r--tests/java5/reflection/AtAspectJDeclareParents.aj4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/java5/reflection/AtAspectJDeclareParents.aj b/tests/java5/reflection/AtAspectJDeclareParents.aj
index d60f6a3c6..fddf12a56 100644
--- a/tests/java5/reflection/AtAspectJDeclareParents.aj
+++ b/tests/java5/reflection/AtAspectJDeclareParents.aj
@@ -2,8 +2,8 @@ import org.aspectj.lang.annotation.*;
public aspect AtAspectJDeclareParents {
- @DeclareParents("C")
- public static I mixin = new Impl();
+ @DeclareParents(value="C",defaultImpl=Impl.class)
+ private I implementedInterface;
}