aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/enums/EnumAspect04.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/java5/enums/EnumAspect04.aj')
-rw-r--r--tests/java5/enums/EnumAspect04.aj3
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;
}