summaryrefslogtreecommitdiff
path: root/test/files/neg/nested-annotation.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-26 13:34:58 -0800
committerPaul Phillips <paulp@improving.org>2013-01-26 13:34:58 -0800
commit74a8ef9c24246c54ffe6236ef156d20d3e1c3f27 (patch)
tree3a3ebc341796a4b71df9ade923c192ecc63e3a08 /test/files/neg/nested-annotation.check
parentbaee5f376774216d7906101dfa7f0bcecdc83a1b (diff)
parentf01e001c77bca0bf09c6594251af6573c76f1c4c (diff)
downloadscala-74a8ef9c24246c54ffe6236ef156d20d3e1c3f27.tar.gz
scala-74a8ef9c24246c54ffe6236ef156d20d3e1c3f27.tar.bz2
scala-74a8ef9c24246c54ffe6236ef156d20d3e1c3f27.zip
Merge pull request #1901 from paulp/pr/dealias-plus-annotations
dealiasing and annotations
Diffstat (limited to 'test/files/neg/nested-annotation.check')
-rw-r--r--test/files/neg/nested-annotation.check10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/neg/nested-annotation.check b/test/files/neg/nested-annotation.check
new file mode 100644
index 0000000000..ca263943fe
--- /dev/null
+++ b/test/files/neg/nested-annotation.check
@@ -0,0 +1,10 @@
+nested-annotation.scala:3: warning: Implementation restriction: subclassing Classfile does not
+make your annotation visible at runtime. If that is what
+you want, you must write the annotation class in Java.
+class ComplexAnnotation(val value: Annotation) extends ClassfileAnnotation
+ ^
+nested-annotation.scala:8: error: nested classfile annotations must be defined in java; found: inline
+ @ComplexAnnotation(new inline) def bippy(): Int = 1
+ ^
+one warning found
+one error found