aboutsummaryrefslogtreecommitdiff
path: root/javatests/com/google/turbine/lower/testdata/array_class_literal.test
diff options
context:
space:
mode:
Diffstat (limited to 'javatests/com/google/turbine/lower/testdata/array_class_literal.test')
-rw-r--r--javatests/com/google/turbine/lower/testdata/array_class_literal.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/javatests/com/google/turbine/lower/testdata/array_class_literal.test b/javatests/com/google/turbine/lower/testdata/array_class_literal.test
index 9033b04..4287cdf 100644
--- a/javatests/com/google/turbine/lower/testdata/array_class_literal.test
+++ b/javatests/com/google/turbine/lower/testdata/array_class_literal.test
@@ -1,4 +1,6 @@
=== Test.java ===
+import java.util.Map;
+
@interface Anno {
Class<?> value() default Object.class;
}
@@ -8,4 +10,5 @@ class Test {
@Anno(byte[][].class) int b;
@Anno(int[][].class) int c;
@Anno(Object[].class) int d;
+ @Anno(Map.Entry[].class) int e;
}