summaryrefslogtreecommitdiff
path: root/test/files/run/t6329_repl_bug.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-11-21 17:24:57 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-11-21 17:32:52 +0100
commitb27c9b84be1d63e86ca20063e9c0f3c9386b0be2 (patch)
treeac033d509ceb6095f1c8ce404c108e2e9b36721e /test/files/run/t6329_repl_bug.check
parentc243435f113615b2f7407fbd683c93ec16c73749 (diff)
downloadscala-b27c9b84be1d63e86ca20063e9c0f3c9386b0be2.tar.gz
scala-b27c9b84be1d63e86ca20063e9c0f3c9386b0be2.tar.bz2
scala-b27c9b84be1d63e86ca20063e9c0f3c9386b0be2.zip
SI-6329 Graduation day for pending tests for tag materialization
Two kids in the class or '6329 had to repeat the senior year, but with a little help from 76b92ef, they've finally graduated. Here's the class photo: commit 3e855661136bb6c530ef1d3a24dc83800e7f1134 Author: Eugene Burmako <xeno.by@gmail.com> Date: Thu Sep 6 22:19:56 2012 +0200 test suite for SI-6329 test/files/run/t6329_repl.check | 13 +++++++++++++ test/files/run/t6329_repl.scala | 8 ++++++++ test/files/run/t6329_repl_bug.check | 13 +++++++++++++ test/files/run/t6329_repl_bug.pending | 10 ++++++++++ test/files/run/t6329_vanilla.check | 2 ++ test/files/run/t6329_vanilla.scala | 4 ++++ test/files/run/t6329_vanilla_bug.check | 2 ++ test/files/run/t6329_vanilla_bug.pending | 7 +++++++ 8 files changed, 59 insertions(+)
Diffstat (limited to 'test/files/run/t6329_repl_bug.check')
-rw-r--r--test/files/run/t6329_repl_bug.check17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/files/run/t6329_repl_bug.check b/test/files/run/t6329_repl_bug.check
new file mode 100644
index 0000000000..44c41cfd03
--- /dev/null
+++ b/test/files/run/t6329_repl_bug.check
@@ -0,0 +1,17 @@
+Type in expressions to have them evaluated.
+Type :help for more information.
+
+scala> import scala.reflect.runtime.universe._
+import scala.reflect.runtime.universe._
+
+scala> import scala.reflect.runtime._
+import scala.reflect.runtime._
+
+scala> classManifest[List[_]]
+warning: there were 1 deprecation warning(s); re-run with -deprecation for details
+res0: scala.reflect.ClassTag[List[_]] = scala.collection.immutable.List[<?>]
+
+scala> scala.reflect.classTag[List[_]]
+res1: scala.reflect.ClassTag[List[_]] = scala.collection.immutable.List
+
+scala>