diff options
author | acolyer <acolyer> | 2005-01-17 11:05:53 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-01-17 11:05:53 +0000 |
commit | 35cab775d1ac2fc45f614b4659047b2f291dcd96 (patch) | |
tree | d416d7bc3c066995ea8bcb704aedeb086cd40f1f /tests/java5/annotations | |
parent | 767d730c50fd21915fed0dd64ad9f40500be0a6b (diff) | |
download | aspectj-35cab775d1ac2fc45f614b4659047b2f291dcd96.tar.gz aspectj-35cab775d1ac2fc45f614b4659047b2f291dcd96.zip |
java 5 support
Diffstat (limited to 'tests/java5/annotations')
-rw-r--r-- | tests/java5/annotations/AnnotationAspect04.aj | 4 |
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;
}
+
+
|