aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features160/annotationValueMatching/Parsing.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/features160/annotationValueMatching/Parsing.java')
-rw-r--r--tests/features160/annotationValueMatching/Parsing.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/features160/annotationValueMatching/Parsing.java b/tests/features160/annotationValueMatching/Parsing.java
index f541a8610..0bbb6e241 100644
--- a/tests/features160/annotationValueMatching/Parsing.java
+++ b/tests/features160/annotationValueMatching/Parsing.java
@@ -1,7 +1,7 @@
enum Color { RED, GREEN, AMBER }
@interface TrafficLight {
- Color value() default Color.RED;
+ Color value() default Color.RED; Color a() default Color.GREEN; Color c() default Color.GREEN; Color e() default Color.GREEN;
}
public class Parsing {
@@ -29,4 +29,4 @@ aspect X {
pointcut p2(): execution(@TrafficLight(a=Color.GREEN) * *(..));
pointcut p3(): execution(@TrafficLight(a=Color.RED,c=Color.RED) * *(..));
pointcut p4(): execution(@TrafficLight(a=Color.RED,c=Color.RED,e=Color.RED) * *(..));
-} \ No newline at end of file
+}