summaryrefslogtreecommitdiff
path: root/test/files/pos/t9356/Foo_2.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2015-06-16 17:00:25 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2015-06-16 17:18:32 -0700
commitf8fbd5dbf031a04343c795cfa99cf768add65f05 (patch)
treeed46b1c5ae252ff4aba2ed006c7f414fb528221f /test/files/pos/t9356/Foo_2.scala
parent43a56fb5a1b6450ce2bdf8f73ab30ca1b16d0778 (diff)
downloadscala-f8fbd5dbf031a04343c795cfa99cf768add65f05.tar.gz
scala-f8fbd5dbf031a04343c795cfa99cf768add65f05.tar.bz2
scala-f8fbd5dbf031a04343c795cfa99cf768add65f05.zip
SI-9356 more careful assertion in back-end
Calling `exists` on a `Symbol` triggers unpickling, which failed for reasons I did not investigate. Replaced `sym.exists` by `sym != NoSymbol`, which is good enough here. Also replaced assertion by a `devWarning`, since the logic seems too ad-hoc to actually crash the compiler when it's invalidated. Partially reverts b45a91fe22. See also #1532.
Diffstat (limited to 'test/files/pos/t9356/Foo_2.scala')
-rw-r--r--test/files/pos/t9356/Foo_2.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t9356/Foo_2.scala b/test/files/pos/t9356/Foo_2.scala
new file mode 100644
index 0000000000..ab7bb44d0e
--- /dev/null
+++ b/test/files/pos/t9356/Foo_2.scala
@@ -0,0 +1,6 @@
+class C
+
+trait Foo {
+ @annot.MyAnnotation(cls = classOf[C])
+ def function: Any = ???
+}