diff options
author | acolyer <acolyer> | 2005-02-11 12:47:56 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-02-11 12:47:56 +0000 |
commit | 1381903ac81cdab2b79b6525096671aa5d62eaeb (patch) | |
tree | f00812eae5c1a626aa99ba954d0899c083a3bc8f /tests/java5/enums/EnumAspect04.aj | |
parent | 382b7330f47d14164896671a4bf3c7ec3acf069b (diff) | |
download | aspectj-1381903ac81cdab2b79b6525096671aa5d62eaeb.tar.gz aspectj-1381903ac81cdab2b79b6525096671aa5d62eaeb.zip |
move all java 5 tests out of code and back into .xml files now that we can compile them properly
Diffstat (limited to 'tests/java5/enums/EnumAspect04.aj')
-rw-r--r-- | tests/java5/enums/EnumAspect04.aj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/java5/enums/EnumAspect04.aj b/tests/java5/enums/EnumAspect04.aj index 834d48807..439c9d4ef 100644 --- a/tests/java5/enums/EnumAspect04.aj +++ b/tests/java5/enums/EnumAspect04.aj @@ -1,6 +1,7 @@ import java.lang.Enum;
public aspect EnumAspect04 {
- declare parents: SimpleE* implements java.io.Serializable;
+ interface I {};
+ declare parents: SimpleE* implements I;
}
|