summaryrefslogtreecommitdiff
path: root/test/pending/neg/reify_packed.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/neg/reify_packed.scala')
-rw-r--r--test/pending/neg/reify_packed.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/pending/neg/reify_packed.scala b/test/pending/neg/reify_packed.scala
new file mode 100644
index 0000000000..0240f2a4b5
--- /dev/null
+++ b/test/pending/neg/reify_packed.scala
@@ -0,0 +1,10 @@
+object Test extends App {
+ reify {
+ class C { override def toString() = "C" }
+ val ret = List((new C, new C))
+ ret.asInstanceOf[List[_]]
+ };
+
+ val toolbox = mkToolBox()
+ println(toolbox.runExpr(code.tree))
+}