aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-01-17 11:05:53 +0000
committeracolyer <acolyer>2005-01-17 11:05:53 +0000
commit35cab775d1ac2fc45f614b4659047b2f291dcd96 (patch)
treed416d7bc3c066995ea8bcb704aedeb086cd40f1f /tests/java5/annotations
parent767d730c50fd21915fed0dd64ad9f40500be0a6b (diff)
downloadaspectj-35cab775d1ac2fc45f614b4659047b2f291dcd96.tar.gz
aspectj-35cab775d1ac2fc45f614b4659047b2f291dcd96.zip
java 5 support
Diffstat (limited to 'tests/java5/annotations')
-rw-r--r--tests/java5/annotations/AnnotationAspect04.aj4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/java5/annotations/AnnotationAspect04.aj b/tests/java5/annotations/AnnotationAspect04.aj
index 62466ae1c..7c1632f7b 100644
--- a/tests/java5/annotations/AnnotationAspect04.aj
+++ b/tests/java5/annotations/AnnotationAspect04.aj
@@ -3,9 +3,11 @@ import java.lang.annotation.Annotation;
public aspect AnnotationAspect04 {
declare parents: SimpleAnnotation implements java.io.Serializable;
- class C extends Annotation { }
+ class C {}
declare parents: SimpleAnnotation extends C;
class D {}
declare parents: D extends Annotation;
}
+
+