summaryrefslogtreecommitdiff
path: root/test/files/neg/nested-annotation.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/nested-annotation.scala')
-rw-r--r--test/files/neg/nested-annotation.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/neg/nested-annotation.scala b/test/files/neg/nested-annotation.scala
new file mode 100644
index 0000000000..35c0cd3b75
--- /dev/null
+++ b/test/files/neg/nested-annotation.scala
@@ -0,0 +1,9 @@
+import annotation._
+
+class ComplexAnnotation(val value: Annotation) extends ClassfileAnnotation
+
+class A {
+ // It's hard to induce this error because @ComplexAnnotation(@inline) is a parse
+ // error so it never gets out of the parser, but:
+ @ComplexAnnotation(new inline) def bippy(): Int = 1
+}