summaryrefslogtreecommitdiff
path: root/test/files/pos/t8868b
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-09-30 14:50:30 +1000
committerJason Zaugg <jzaugg@gmail.com>2014-09-30 14:58:55 +1000
commitbcd1e4f3a3c7a683bb7cf435ef8163ecaf90f126 (patch)
tree43fe4ac6958a20f6244e86609345443e99635cad /test/files/pos/t8868b
parent2cfac1a3516850a40728fefd8f808613d2e83f84 (diff)
downloadscala-bcd1e4f3a3c7a683bb7cf435ef8163ecaf90f126.tar.gz
scala-bcd1e4f3a3c7a683bb7cf435ef8163ecaf90f126.tar.bz2
scala-bcd1e4f3a3c7a683bb7cf435ef8163ecaf90f126.zip
SI-8868 Fix unpickling of local dummy symbols
These pop up as the owner of symbols in annotation arguments, such as the ones introduced by the names/defaults desugaring. The first two test cases here motivate the two patches to Unpicker. The third requires both fixes, but exploits the problem directly, without using `@deprecated` and named arguments. See also 14fa7be / SI-8708 for a recently remedied kindred bug.
Diffstat (limited to 'test/files/pos/t8868b')
-rw-r--r--test/files/pos/t8868b/Sub_2.scala2
-rw-r--r--test/files/pos/t8868b/T_1.scala4
2 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t8868b/Sub_2.scala b/test/files/pos/t8868b/Sub_2.scala
new file mode 100644
index 0000000000..58b44db2b3
--- /dev/null
+++ b/test/files/pos/t8868b/Sub_2.scala
@@ -0,0 +1,2 @@
+class Sub extends T
+
diff --git a/test/files/pos/t8868b/T_1.scala b/test/files/pos/t8868b/T_1.scala
new file mode 100644
index 0000000000..0b71cfdaa3
--- /dev/null
+++ b/test/files/pos/t8868b/T_1.scala
@@ -0,0 +1,4 @@
+@deprecated(since = "2.4.0", message = "")
+trait T {
+ class X
+}