summaryrefslogtreecommitdiff
path: root/test/files/run/t4788-separate-compilation.check
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2014-02-03 21:44:59 +0100
committerSimon Ochsenreither <simon@ochsenreither.de>2014-10-07 20:25:01 +0200
commitc14e0532fcd6d68c43a3c974efec9d15b6e4b217 (patch)
tree39d214f792687f708fa390cf6e6432b70a6625da /test/files/run/t4788-separate-compilation.check
parent0940f19dc6809ee7622dda1b76121af628d5b435 (diff)
downloadscala-c14e0532fcd6d68c43a3c974efec9d15b6e4b217.tar.gz
scala-c14e0532fcd6d68c43a3c974efec9d15b6e4b217.tar.bz2
scala-c14e0532fcd6d68c43a3c974efec9d15b6e4b217.zip
SI-4788/SI-5948 Respect RetentionPolicy of Java annotations
Note that I removed the check to ignore @deprecated: - @deprecated extends StaticAnnotation, so they aren't supposed to show up in the RuntimeInvisibleAnnotation attribute anyway, and the earlier check for "extends ClassfileAnnotationClass" makes this check superflous anyway. - Otherwise, if @deprecated was extending ClassfileAnnotationClass it would seem inconsistent that we don't emit @deprecated, but would do so for @deprecatedOverriding, @deprecatedInheritance, etc. Anyway, due to ClassfileAnnotation not working in Scala, and the additional check which only allows Java-defined annotations, this is pretty pointless from every perspective.
Diffstat (limited to 'test/files/run/t4788-separate-compilation.check')
-rw-r--r--test/files/run/t4788-separate-compilation.check5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/run/t4788-separate-compilation.check b/test/files/run/t4788-separate-compilation.check
new file mode 100644
index 0000000000..172ad90102
--- /dev/null
+++ b/test/files/run/t4788-separate-compilation.check
@@ -0,0 +1,5 @@
+Some(@Ljava/lang/Deprecated;())
+None
+None
+Some(@LCAnnotation;() // invisible)
+Some(@LRAnnotation;())