aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_newimpl_35.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_newimpl_35.check')
-rw-r--r--tests/pending/run/reify_newimpl_35.check13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/pending/run/reify_newimpl_35.check b/tests/pending/run/reify_newimpl_35.check
deleted file mode 100644
index bd9b3a2fb..000000000
--- a/tests/pending/run/reify_newimpl_35.check
+++ /dev/null
@@ -1,13 +0,0 @@
-Type in expressions to have them evaluated.
-Type :help for more information.
-
-scala> import scala.reflect.runtime.universe._
-import scala.reflect.runtime.universe._
-
-scala> def foo[T: TypeTag] = reify{List[T]()}
-foo: [T](implicit evidence$1: reflect.runtime.universe.TypeTag[T])reflect.runtime.universe.Expr[List[T]]
-
-scala> println(foo)
-Expr[List[Nothing]](Nil)
-
-scala> :quit