summaryrefslogtreecommitdiff
path: root/test/files/neg/nested-annotation.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-14 23:29:50 -0800
committerPaul Phillips <paulp@improving.org>2013-01-26 11:19:36 -0800
commite626ecd2346b917d1b3397e0159bca4862214e9d (patch)
tree627506583796323e212d3ba863e84540130622fc /test/files/neg/nested-annotation.scala
parent76bb23df5e2909871f4f6ba3184abe99f9ba667a (diff)
downloadscala-e626ecd2346b917d1b3397e0159bca4862214e9d.tar.gz
scala-e626ecd2346b917d1b3397e0159bca4862214e9d.tar.bz2
scala-e626ecd2346b917d1b3397e0159bca4862214e9d.zip
Added test for untested nested annotation restriction.
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
+}