aboutsummaryrefslogtreecommitdiff
path: root/test/tools/javac/annotations/testCrashNestedAnnos/TestCrashNestedAnnos.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/tools/javac/annotations/testCrashNestedAnnos/TestCrashNestedAnnos.java')
-rw-r--r--test/tools/javac/annotations/testCrashNestedAnnos/TestCrashNestedAnnos.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/tools/javac/annotations/testCrashNestedAnnos/TestCrashNestedAnnos.java b/test/tools/javac/annotations/testCrashNestedAnnos/TestCrashNestedAnnos.java
new file mode 100644
index 00000000..5c7a4a33
--- /dev/null
+++ b/test/tools/javac/annotations/testCrashNestedAnnos/TestCrashNestedAnnos.java
@@ -0,0 +1,14 @@
+/* @test /nodynamiccopyright/
+ * @bug 8027375
+ * @summary Test that javac doesn't assert/crash when there are what looks to
+ * be annotations nested inside erroneous annotations.
+ * @compile/fail/ref=TestCrashNestedAnnos.out -XDrawDiagnostics TestCrashNestedAnnos.java
+ */
+public class TestCrashNestedAnnos {
+ // A and B are not annotation types
+ @A(@A1()) int foo() {}
+ @B(@B1()) int bar() {}
+}
+
+class B {}
+class B1 {}